Files
Backend-Api/CompanyManagment.App.Contracts/Leave/LeaveMainViewModel.cs
2024-07-05 21:36:15 +03:30

15 lines
370 B
C#

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<LeaveViewModel> LeaveList { get; set; }
}