Files
xPushService/Store/XPushGroupInMemoryStore.cs
T
2024-01-25 04:47:14 +03:30

7 lines
223 B
C#

using xModels.Providers;
using xPushService.Interfaces;
using xPushService.Models;
namespace xPushService.Store {
public class XPushGroupInMemoryStore : XBaseInMemoryStore<XPushGroupDto, string>, IXPushGroupStore { }
}