oliverbooth.dev/OliverBooth/Services/IContactService.cs

15 lines
317 B
C#
Raw Normal View History

2023-12-22 14:26:18 +00:00
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();
}