yavsc/Yavsc.Abstract/Streaming/IChatRoomUsage.cs

12 lines
234 B
C#
Raw Normal View History

2018-01-02 16:35:03 +01:00
namespace Yavsc.Abstract.Streaming
{
public interface IChatRoomUsage {
string ChannelName { get; set; }
string ChatUserConnectionId { get; set; }
ChatRoomUsageLevel Level { get; set; }
}
}