22 lines
644 B
C#
22 lines
644 B
C#
namespace Tnb.BasicData.Entities.Dto
|
|
{
|
|
public class CalendarInput
|
|
{
|
|
public string? datetext { get; set; }
|
|
public string? datetype { get; set; }
|
|
public string? workhour { get; set; }
|
|
public string? worktype { get; set; }
|
|
public int? calendartype { get; set; }
|
|
|
|
public string? content { get; set; }
|
|
}
|
|
public class CalendarBatchInput
|
|
{
|
|
public string[]? startenday { get; set; }
|
|
public int[]? weekday { get; set; }
|
|
public string? datetype { get; set; }
|
|
public string? workhour { get; set; }
|
|
public string? worktype { get; set; }
|
|
}
|
|
}
|