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

22 lines
714 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Contract;
public class ContractSeparationViewModel
{
public string ContarctStart { get; set; }
public string ContractEnd { get; set; }
public DateTime ContractStartGr { get; set; }
public DateTime ContractEndGr { get; set; }
public DateTime StartWorkDate { get; set; }
public DateTime LeftWorkDate { get; set; }
public string DayliWage { get; set; }
public string HousingAllowance { get; set; }
public string ConsumableItems { get; set; }
public bool checker { get; set; }
public bool HasLeft { get; set; }
}