feat: Fixed errors
This commit is contained in:
9
LctMonolith/Services/Contracts/IInventoryService.cs
Normal file
9
LctMonolith/Services/Contracts/IInventoryService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using LctMonolith.Models;
|
||||
|
||||
namespace LctMonolith.Services.Contracts;
|
||||
|
||||
public interface IInventoryService
|
||||
{
|
||||
Task<IEnumerable<UserInventoryItem>> GetStoreInventoryAsync(Guid userId, CancellationToken ct = default);
|
||||
Task<IEnumerable<UserArtifact>> GetArtifactsAsync(Guid userId, CancellationToken ct = default);
|
||||
}
|
||||
Reference in New Issue
Block a user