Browse Source

FixedPay fields

zinab_elgendy 2 weeks ago
parent
commit
9e45f4facc
1 changed files with 9 additions and 0 deletions
  1. 9 0
      MTWorkHR.Application/Dtos/Contract/ContractDto.cs

+ 9 - 0
MTWorkHR.Application/Dtos/Contract/ContractDto.cs

@@ -61,6 +61,15 @@ namespace MTWorkHR.Application.Models
         public string? Currency { get; set; }
         public decimal? Salary{ get; set; }
         public BillingCycle BillingCycle { get; set; }// 2 fortnightly, 4 Monthly
+        //------------------------Fixed Pay----------------
+        public DateTime? FirstPatchDateFrom { get; set; } 
+        public DateTime? FirstPatchDateTo { get; set; } //
+        public decimal? FirstPatchAmount { get; set; }
+
+        public DateTime? LastPatchDateFrom { get; set; } //
+        public DateTime? LastPatchDateTo { get; set; } // 
+        public decimal? LastPatchAmount { get; set; }
+
 
 
         //---------Allowances----------------------