using System.Diagnostics.CodeAnalysis; using YaeBlog.Core.Models; namespace YaeBlog.Core.Abstractions; public interface IEssayContentService { public IReadOnlyDictionary Essays { get; } public IReadOnlyDictionary> Tags { get; } public bool SearchByUrlEncodedTag(string tag,[NotNullWhen(true)] out List? result); }