9 lines
255 B
C#
9 lines
255 B
C#
namespace SharpChat.Bans;
|
|
|
|
public interface BanInfo {
|
|
BanKind Kind { get; }
|
|
bool IsPermanent { get; }
|
|
DateTimeOffset ExpiresAt { get; }
|
|
public bool HasExpired => !IsPermanent && DateTimeOffset.UtcNow >= ExpiresAt;
|
|
string ToString();
|
|
}
|