using StickyBoard.Core.Models.Attachments; using StickyBoard.Core.Repositories.Base; namespace StickyBoard.Core.Repositories.Attachments.Contracts; public interface IAttachmentRepository : IRepository { Task> GetForCardAsync(Guid cardId, CancellationToken ct); Task> GetForBoardAsync(Guid boardId, CancellationToken ct); Task> GetForWorkspaceAsync(Guid workspaceId, CancellationToken ct); }