using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CompanyManagment.App.Contracts.ReportClient; public class CheckoutReportSearchModel { public string EmployeeFullName { get; set; } public string NationalCode { get; set; } public long EmployeeId { get; set; } public string Month { get; set; } public string Year { get; set; } public int PageIndex { get; set; } public bool ShiftPayCheck { get; set; } = true; public bool FamilyAllowanceCheck {get; set;} = true; public bool RewardPayCheck {get; set;} = true; public bool BonusesPayCheck {get; set;} = true; public bool YearsPayCheck {get; set;} = true; public bool LeavePayCheck {get; set;} = true; public bool InsuranceDeductionCheck {get; set;} = true; public bool MarriedAllowanceCheck {get; set;} = true; public bool TaxDeducationCheck {get; set;} = true; public bool AbsenceDeductionCheck {get; set;} = true; public bool ZeroMoneyCheck { get; set; } = true; }