Files
Backend-Api/CompanyManagment.App.Contracts/Contract/ContractSeparationViewModel.cs
2026-01-26 14:44:30 +03:30

24 lines
756 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; }
public long EmployeeId { get; set; }
}