using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Kanban))] [Caption("Type")] public class KanbanType : Entity, IRemotable, IPersistent, ILicense, IExportable, IImportable, IMergeable { [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)] public string Code { get; set; } [TextBoxEditor] public string Description { get; set; } [CheckBoxEditor] public bool Hidden { get; set; } public override string ToString() { return $"{Code}: {Description}"; } } }