123456789101112131415161718 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking("Qualifications & Tickets")]
- public class Qualification : Entity, IRemotable, IPersistent, IQualification, ILicense<HumanResourcesLicense>, IExportable, IImportable,
- IMergeable
- {
- [TextBoxEditor(Visible = Visible.Default)]
- public string Description { get; set; }
- [EnumLookupEditor(typeof(QualificationRenewal), Visible = Visible.Optional)]
- public QualificationRenewal Renewal { get; set; } = QualificationRenewal.Manual;
- [IntegerEditor(Visible = Visible.Optional)]
- public int Period { get; set; } = 0;
- }
- }
|