CreateCalendarDto.cs 504 B

123456789101112131415161718
  1. using Abp.AutoMapper;
  2. using VberZero.AppService.Base.Dto;
  3. using VberZero.BaseSystem;
  4. namespace VberZero.AppService.Calendars.Dto;
  5. [AutoMapTo(typeof(SysCalendar))]
  6. public class CreateCalendarDto : VzEntityDto<int?>
  7. {
  8. public string Title { get; set; }
  9. public string Description { get; set; }
  10. public DateTime? Start { get; set; }
  11. public DateTime? End { get; set; }
  12. public string Colors { get; set; }
  13. public bool AllDay { get; set; }
  14. public string NotifyType { get; set; }
  15. }