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 string? workhour { get; set; } public string? worktype { get; set; } } }