using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Consignment))] public class ConsignmentType : Entity, IPersistent, IRemotable, ILicense, IImportable, IExportable, IMergeable { [EditorSequence(1)] [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)] public string Code { get; set; } [EditorSequence(2)] [TextBoxEditor] public string Description { get; set; } [EditorSequence(3)] [CheckBoxEditor] public bool Hidden { get; set; } } }