sharp-chat/SharpChatCommon/Bans/IPAddressBanInfo.cs

8 lines
139 B
C#
Raw Normal View History

using System.Net;
namespace SharpChat.Bans {
public interface IPAddressBanInfo : BanInfo {
IPAddress Address { get; }
}
}