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