using StickyBoard.Core.Models; using StickyBoard.Core.Models.SocialAndMessaging; using StickyBoard.Core.Repositories.Base; namespace StickyBoard.Core.Repositories.SocialAndMessaging.Contracts; public interface IMentionRepository : IRepository { Task> GetForUserAsync(Guid userId, CancellationToken ct); Task> GetForEntityAsync(EntityType entityType, Guid entityId, CancellationToken ct); }