using LctMonolith.Models; namespace LctMonolith.Services.Contracts; public interface IInventoryService { Task> GetStoreInventoryAsync(Guid userId, CancellationToken ct = default); Task> GetArtifactsAsync(Guid userId, CancellationToken ct = default); }