using Comal.Classes.Entities; using InABox.Core; using System; using System.Collections.Generic; using System.Text; namespace Comal.Classes { public class SetoutGroup : Entity, IPersistent, IRemotable, ILicense { [TextBoxEditor(Editable = Editable.Enabled)] public string Name { get; set; } public JobLink Job { get; set; } [Caption("Optimization Document")] public DocumentLink OptimizationDocument { get; set; } protected override void Init() { Name = ""; Job = new JobLink(); OptimizationDocument = new DocumentLink(); base.Init(); } } }