ShortMessageDto.cs 538 B

123456789101112131415161718
  1. using System;
  2. using Abp.AutoMapper;
  3. using Abp.Application.Services.Dto;
  4. using ShwasherSys.NotificationInfo;
  5. namespace ShwasherSys.NotificationInfo.Dto
  6. {
  7. [AutoMapTo(typeof(ShortMessage)),AutoMapFrom(typeof(ShortMessage))]
  8. public class ShortMessageDto: EntityDto<int>
  9. {
  10. public string SendUserID { get; set; }
  11. public string Title { get; set; }
  12. public string Content { get; set; }
  13. public DateTime? SendTime { get; set; }
  14. public string IsDelete { get; set; }
  15. public string RecieveUserIds { get; set; }
  16. }
  17. }