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