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; } }