2024-05-05 02:18:20 +01:00
|
|
|
using OliverBooth.Common.Data.Web;
|
2023-12-22 14:26:18 +00:00
|
|
|
|
2024-05-05 02:18:20 +01:00
|
|
|
namespace OliverBooth.Common.Services;
|
2023-12-22 14:26:18 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents a service for managing contact information.
|
|
|
|
/// </summary>
|
|
|
|
public interface IContactService
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the blacklist.
|
|
|
|
/// </summary>
|
|
|
|
IReadOnlyCollection<IBlacklistEntry> GetBlacklist();
|
|
|
|
}
|