11 lines
220 B
C#
11 lines
220 B
C#
namespace InventoryApi.Models;
|
|
|
|
public class GrantInventoryItemRequest
|
|
{
|
|
public string ItemKey { get; set; } = string.Empty;
|
|
|
|
public int Quantity { get; set; } = 1;
|
|
|
|
public int? PreferredSlot { get; set; }
|
|
}
|