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