using StickyBoard.Core.Models.Attachments; using StickyBoard.Core.Repositories.Base; namespace StickyBoard.Core.Repositories.Attachments.Contracts; public interface IAttachmentVariantRepository : IRepository { Task> GetForParentAsync(Guid parentId, CancellationToken ct); }