sharp-chat/SharpChat.Common/Bans/IBanRecord.cs
2022-08-30 17:05:29 +02:00

12 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; }
}
}