Files
InventoryTraker-Box/InventoryTraker.Web/Models/MovementReportItem.cs
T

13 lines
410 B
C#

namespace InventoryTraker.Web.Models
{
public class MovementReportItem
{
public InventoryTypeViewModel InventoryType { get; set; }
public int BeginningQuantity { get; set; }
public int AddedQuantity { get; set; }
public int TotalAvailableQuantity { get; set; }
public int DistributedQuantity { get; set; }
public int AdjustmentQuantity { get; set; }
public int EndingQuantity { get; set; }
}
}