using Abp.Application.Services.Dto; using Abp.AutoMapper; using VberZero.BaseSystem; namespace VberZero.AppService.Calendars.Dto; [AutoMapTo(typeof(SysCalendar))] public class UpdateCalendarDto : EntityDto { public string Title { get; set; } public string Description { get; set; } public DateTime? Start { get; set; } public DateTime? End { get; set; } public string Colors { get; set; } public bool AllDay { get; set; } public string NotifyType { get; set; } }