Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceJob/InsuranceJobSearchModel.cs
2024-07-05 21:36:15 +03:30

18 lines
523 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.InsuranceJob;
public class InsuranceJobSearchModel
{
public string InsuranceJobTitle { get; set; }
public long YearlySalaryId { get; set; }
public string EconomicCode { get; set; }
public string Year { get; set; }
public string Month { get; set; }
//public double SalaryFrom { get; set; }
//public double SalaryTo{ get; set; }
}