12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.PersonnelModule
- {
-
-
-
- public class WageSheetMonthView
- {
-
-
-
- public string YearMonth { get; set; }
-
-
-
- public string StartDate { get; set; }
-
-
-
- public string EndDate { get; set; }
-
-
-
- public int Workdays { get; set; }
- }
-
-
-
- public class CalendarInfoView
- {
- public int Id { get; set; }
-
-
-
-
- public string Dt { get; set; }
-
-
-
- public bool IsWorkDay { get; set; }
-
-
-
- public bool IsHoliDay { get; set; }
-
-
-
- public string HoliName { get; set; }
- }
- }
|