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