using System;
using myBlazorApp.Models;
namespace myBlazorApp.Components
{
public class InventoryAction
{
///
/// Gets and sets the action
///
public string Action { get; set; }
///
/// Gets and sets the inde where the action affected
///
public int Index { get; set; }
///
/// Gets and sets the item name the action affected
///
public string ItemName { get; set; }
///
/// Gets and sets the number of items the action affected
///
public int Number { get; set; }
///
/// Gets and sets the stack size of the item the action affected
///
public int StackSize { get; set; }
}
}