using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace comal.timesheets.Deliveries { public class Docket : Entity { public string Setout { get; set; } public string Rack { get; set; } public string Description { get; set; } public string Requi { get; set; } protected override void Init() { base.Init(); Setout = ""; Rack = ""; Description = ""; Requi = ""; } public Docket() { } } }