1234567891011121314151617181920212223242526272829 |
- using System;
- using MTWorkHR.Core.Entities.Base;
- namespace MTWorkHR.Application.Models
- {
- public class SubscriptionConfigurationDto : EntityDto
- {
- public decimal? FirstRegisterationCompanyFees { get; set; }
- public decimal? MonthlyCompanyFees { get; set; }
- public decimal? YearlyCompanyFees { get; set; }
- public decimal? MonthlyEmployeeServicesCompanyFees { get; set; }
- public decimal? DistinguishedEmployeeCompanyFeesPerc { get; set; }
- //--------------------------forms for Employee------------------
- public decimal? OrdinaryEmployeePerc { get; set; }
- public decimal? DistinguishedEmployeePerc { get; set; }
- public decimal? DeductedFirstSearchAmount { get; set; }
- public decimal? ContractDocumentationFees { get; set; }
- public decimal? ExperienceCertificateFees { get; set; }
- public decimal? RequestDisputeResolutionFees { get; set; }
- }
- }
|