7 lines
168 B
C#
7 lines
168 B
C#
namespace SharpChat.Bans;
|
|
|
|
public interface UserBanInfo : BanInfo {
|
|
string UserId { get; }
|
|
string UserName { get; }
|
|
ColourInheritable UserColour { get; }
|
|
}
|