Files
xPushService/Store/XPushGroupInMemoryStore.cs
T

16 lines
411 B
C#

using xModels.Providers;
using xPushService.Interfaces;
using xPushService.Models;
namespace xPushService.Store
{
public class XPushGroupInMemoryStore : XBaseInMemoryStore<XPushGroupDto, string>, IXPushGroupStore
{
//
#region Constructor ...
public XPushGroupInMemoryStore(
IXPushGroupStoreEvents events = null
) : base(events) { }
#endregion
}
}