15 lines
317 B
C#
15 lines
317 B
C#
using OliverBooth.Data.Web;
|
|
|
|
namespace OliverBooth.Services;
|
|
|
|
/// <summary>
|
|
/// Represents a service for managing contact information.
|
|
/// </summary>
|
|
public interface IContactService
|
|
{
|
|
/// <summary>
|
|
/// Gets the blacklist.
|
|
/// </summary>
|
|
IReadOnlyCollection<IBlacklistEntry> GetBlacklist();
|
|
}
|