oliverbooth.dev/OliverBooth.Common/Services/IContactService.cs
Oliver Booth 6ec4103a3a
refactor: separate Markdig extensions from project
Also introduces .Common project to house common references and types
2024-05-05 02:18:20 +01:00

15 lines
331 B
C#

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