sharp-chat/SharpChatCommon/Bans/UserBanInfo.cs

7 lines
190 B
C#

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