| 123456789101112131415161718 |
- using Abp.AutoMapper;
- using VberZero.AppService.Base.Dto;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.Calendars.Dto;
- [AutoMapTo(typeof(SysCalendar))]
- public class CreateCalendarDto : VzEntityDto<int?>
- {
- 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; }
- }
|