Files
Backend-Api/CompanyManagment.App.Contracts/Leave/LeavePrintViewModel.cs

32 lines
1.1 KiB
C#

using CompanyManagment.App.Contracts.Checkout;
using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Leave;
public class LeavePrintViewModel
{
public long Id { get; set; }
public string ContractNo { get; set; }
public long EmployeeId { get; set; }
public string EmployeeFullName { get; set; }
public string NationalCode { get; set; }
public long WorkshopId { get; set; }
public string WorkshopName { get; set; }
public string StartLeave { get; set; }
public string EndLeave { get; set; }
public DateTime StartLeaveGr { get; set; }
public DateTime EndLeaveGr { get; set; }
public string LeaveHourses { get; set; }
public string PaidLeaveType { get; set; }
public string LeaveType { get; set; }
public bool IsAccepted { get; set; }
public string Decription { get; set; }
public int Year { get; set; }
public int Month { get; set; }
public string MonthGr { get; set; }
public int PrintCounter { get; set; }
public List<EmprViewModel> EmployerList { get; set; }
public bool IsInvalid { get; set; }
}