sharp-chat/SharpChatCommon/Bans/UserBanInfo.cs

7 lines
168 B
C#

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