1
This commit is contained in:
@@ -13,4 +13,13 @@ namespace Tnb.BasicData.Entities.Dto
|
||||
public string? workhour { get; set; }
|
||||
public string? worktype { get; set; }
|
||||
}
|
||||
public class CalendarBatchInput
|
||||
{
|
||||
public string? startday { get; set; }
|
||||
public string? endday { get; set; }
|
||||
public int[]? weekday { get; set; }
|
||||
public string? datetype { get; set; }
|
||||
public string? workhour { get; set; }
|
||||
public string? worktype { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,12 @@ namespace Tnb.BasicData.Entities.Dto.BasCalendar
|
||||
{
|
||||
public string? datetext { get; set; }
|
||||
public string? datetype { get; set; }
|
||||
public string? workhour { get; set; }
|
||||
public List<WorkHour>? workhour { get; set; }
|
||||
public string? worktype { get; set; }
|
||||
}
|
||||
public class WorkHour
|
||||
{
|
||||
public string? start { get; set; }
|
||||
public string? end { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user