15 lines
427 B
C#
15 lines
427 B
C#
using InventoryTraker.Web.Core;
|
|
|
|
namespace InventoryTraker.Web.Models
|
|
{
|
|
public class InventoryReportItem
|
|
{
|
|
public Inventory Inventory { 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; }
|
|
}
|
|
} |