Files
InventoryTraker-Box/InventoryTraker.Web/Models/DistributionReport.cs
T
2016-09-16 10:34:14 -04:00

13 lines
224 B
C#

using System;
namespace InventoryTraker.Web.Models
{
public class DistributionReport
{
public TransactionViewModel[] Transactions;
public string Destination { get; set; }
public DateTime Date { get; set; }
}
}