Files
xPushService/Store/XWebRTCConnectionInMemoryStore.cs
T

16 lines
446 B
C#

using xModels.Providers;
using xPushService.Interfaces;
using xPushService.Models;
namespace xPushService.Store
{
public class XWebRTCConnectionInMemoryStore : XBaseInMemoryStore<XWebRTCConnectionDto, string>, IXWebRTCConnectionStore
{
//
#region Constructor ...
public XWebRTCConnectionInMemoryStore(
IXWebRTCConnectionStoreEvents events = null
) : base(events) { }
#endregion
}
}