Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceJob/CreateInsuranceJob.cs
2025-05-19 20:34:44 +03:30

26 lines
774 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.InsuranceJobItem;
using CompanyManagment.App.Contracts.Job;
namespace CompanyManagment.App.Contracts.InsuranceJob;
public class CreateInsuranceJob
{
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 long JobId { get; set; }
public string StartDateFa { get; set; }
public string EndDateFa { get; set; }
public List<JobViewModel> Jobs { get; set; }
public List<InsuranceJobItemViewModel> InsuranceJobItems { get; set; }
}