SubscriptionConfigurationDto.cs 956 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using MTWorkHR.Core.Entities.Base;
  3. namespace MTWorkHR.Application.Models
  4. {
  5. public class SubscriptionConfigurationDto : EntityDto
  6. {
  7. public decimal? FirstRegisterationCompanyFees { get; set; }
  8. public decimal? MonthlyCompanyFees { get; set; }
  9. public decimal? YearlyCompanyFees { get; set; }
  10. public decimal? MonthlyEmployeeServicesCompanyFees { get; set; }
  11. public decimal? DistinguishedEmployeeCompanyFeesPerc { get; set; }
  12. //--------------------------forms for Employee------------------
  13. public decimal? OrdinaryEmployeePerc { get; set; }
  14. public decimal? DistinguishedEmployeePerc { get; set; }
  15. public decimal? DeductedFirstSearchAmount { get; set; }
  16. public decimal? ContractDocumentationFees { get; set; }
  17. public decimal? ExperienceCertificateFees { get; set; }
  18. public decimal? RequestDisputeResolutionFees { get; set; }
  19. }
  20. }