namespace OliverBooth.Data.Web; /// /// Represents an entry in the blacklist. /// public interface IBlacklistEntry { /// /// Gets the email address of the entry. /// /// The email address of the entry. string EmailAddress { get; } /// /// Gets the name of the entry. /// /// The name of the entry. string Name { get; } /// /// Gets the reason for the entry. /// /// The reason for the entry. string Reason { get; } }