15 lines
370 B
C#
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; }
|
|
} |