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