aspnetcore/samples/SocketsSample/EndPoints/Hubs/IGroupManager.cs

9 lines
158 B
C#

namespace SocketsSample.Hubs
{
public interface IGroupManager
{
void Add(string groupName);
void Remove(string groupName);
}
}