oliverbooth.dev/OliverBooth/Data/Web/IBlacklistEntry.cs

26 lines
625 B
C#
Raw Normal View History

2023-12-22 14:26:18 +00:00
namespace OliverBooth.Data.Web;
/// <summary>
/// Represents an entry in the blacklist.
/// </summary>
public interface IBlacklistEntry
{
/// <summary>
/// Gets the email address of the entry.
/// </summary>
/// <value>The email address of the entry.</value>
string EmailAddress { get; }
/// <summary>
/// Gets the name of the entry.
/// </summary>
/// <value>The name of the entry.</value>
string Name { get; }
/// <summary>
/// Gets the reason for the entry.
/// </summary>
/// <value>The reason for the entry.</value>
string Reason { get; }
}