Files
lct2025-lonolith/LctMonolith/Services/Contracts/IInventoryService.cs
2025-10-01 01:56:05 +03:00

9 lines
236 B
C#

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