using OliverBooth.Common.Data.Web.Contact;
namespace OliverBooth.Common.Services;
///
/// Represents a service for managing contact information.
///
public interface IContactService
{
///
/// Gets the blacklist.
///
IReadOnlyCollection GetBlacklist();
}