oliverbooth.dev/OliverBooth.Common/Services/IContactService.cs

15 lines
331 B
C#
Raw Permalink Normal View History

using OliverBooth.Common.Data.Web;
2023-12-22 14:26:18 +00: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();
}