22 lines
528 B
C#
22 lines
528 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; }
|
|
}
|
|
}
|