11 lines
257 B
C#
11 lines
257 B
C#
using SharpChat.Users.Remote;
|
|
using System;
|
|
using System.Net;
|
|
|
|
namespace SharpChat.Bans {
|
|
public interface IBanRecord : IRemoteUser {
|
|
IPAddress UserIP { get; }
|
|
DateTimeOffset Expires { get; }
|
|
bool IsPermanent { get; }
|
|
}
|
|
}
|