1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 string Dt { get; set; }
-
-
-
- public bool IsWorkDay { get; set; }
-
-
-
- public bool IsHoliDay { get; set; }
-
-
-
- public string HoliName { get; set; }
- }
- }
|