using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CompanyManagment.App.Contracts.Leave; public class LeaveMainViewModel { public int Year { get; set; } public int Month { get; set; } public string MonthStr { get; set; } public List LeaveList { get; set; } }