using System; using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(ManufacturingPacket))] public class ManufacturingHistorySummary : Entity, IRemotable, IPersistent, ILicense { public EmployeeLink Employee { get; set; } public DateTime Date { get; set; } public TimeSpan ProductiveTime { get; set; } public TimeSpan UnproductiveTime { get; set; } public int PacketsCompleted { get; set; } public string Notes { get; set; } protected override void Init() { base.Init(); Employee = new EmployeeLink(); } } }