Files
lct2025-lonolith/LctMonolith/Services/Contracts/IInventoryService.cs

9 lines
228 B
C#

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