9 lines
236 B
C#
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);
|
|
}
|