22 lines
672 B
C#
22 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CompanyManagment.App.Contracts.Leave;
|
|
|
|
namespace CompanyManagment.App.Contracts.Checkout;
|
|
|
|
public class CheckoutLeavePrintViewModel
|
|
{
|
|
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 List<EmprViewModel> EmployerList { get; set; }
|
|
public List<LeaveViewModel> LeaveList { get; set; }
|
|
}
|