12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using OASystem.Domain.ViewModels.PersonnelModule;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.PersonnelModule
- {
-
-
-
- public class WageSheetMonthWorkdaysDto
- {
- }
-
-
-
- public class WageSheetMonthWorkdaysAddOrEditDto
- {
- public int UserId { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public string YearMonth { get; set; }
- public string StartDate { get; set; }
- public string EndDate { get; set; }
-
-
-
- public List<CalendarInfoView> CalendarInfos { get; set; }
- }
- }
|