1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Kanban))]
- [Caption("Type")]
- public class KanbanType : Entity, IRemotable, IPersistent, ILicense<TaskManagementLicense>, 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}";
- }
- }
- }
|