Qualification.cs 641 B

123456789101112131415161718
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking("Qualifications & Tickets")]
  5. public class Qualification : Entity, IRemotable, IPersistent, IQualification, ILicense<HumanResourcesLicense>, IExportable, IImportable,
  6. IMergeable
  7. {
  8. [TextBoxEditor(Visible = Visible.Default)]
  9. public string Description { get; set; }
  10. [EnumLookupEditor(typeof(QualificationRenewal), Visible = Visible.Optional)]
  11. public QualificationRenewal Renewal { get; set; } = QualificationRenewal.Manual;
  12. [IntegerEditor(Visible = Visible.Optional)]
  13. public int Period { get; set; } = 0;
  14. }
  15. }