8 lines
139 B
C#
8 lines
139 B
C#
|
using System.Net;
|
||
|
|
||
|
namespace SharpChat.Bans {
|
||
|
public interface IPAddressBanInfo : BanInfo {
|
||
|
IPAddress Address { get; }
|
||
|
}
|
||
|
}
|