29 lines
702 B
C#
29 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
|
|
}
|