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

14 lines
380 B
C#

using System;
using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Leave;
public class GroupLeavePrintViewModel
{
public List<LeavePrintViewModel> LeaveList { get; set; }
public List<long> LeaveIdList { get; set; }
public int StartPrint { get; set; }
public int EndPrint { get; set; }
public string TotalLeaveMessage { get; set; }
}