sharp-chat/SharpChatCommon/Bans/UserBanInfo.cs

8 lines
168 B
C#
Raw Normal View History

namespace SharpChat.Bans;
public interface UserBanInfo : BanInfo {
string UserId { get; }
string UserName { get; }
ColourInheritable UserColour { get; }
}