Adding inventory microservice
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace InventoryApi.Models;
|
||||
|
||||
public class MoveInventoryItemRequest
|
||||
{
|
||||
public string ItemId { get; set; } = string.Empty;
|
||||
|
||||
public int ToSlot { get; set; }
|
||||
|
||||
public int? Quantity { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user