You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
508 B

1 year ago
  1. using System;
  2. namespace GMCabsDriverAssistant.Models
  3. {
  4. public class NotificationDto
  5. {
  6. public string Id { get; set; }
  7. public int UserID { get; set; }
  8. public string Subject { get; set; }
  9. public string Body { get; set; }
  10. public string FromName { get; set; }
  11. public DateTime SentDate { get; set; }
  12. public DateTime? ReceivedDate { get; set; }
  13. public DateTime? DateViewed { get; set; }
  14. public bool Important { get; set; }
  15. }
  16. }