23 lines
585 B
C#
23 lines
585 B
C#
namespace Tnb.BasicData.Entities.Dto.BasCalendar
|
|
{
|
|
public class CalendarOut
|
|
{
|
|
public string? datetext { get; set; }
|
|
public string? datetype { 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; }
|
|
}
|
|
public class Shift
|
|
{
|
|
public string? startday { get; set; }
|
|
public string? endday { get; set; }
|
|
public WorkHour? workhour { get; set; }
|
|
}
|
|
|
|
}
|