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.

42 lines
1.3 KiB

1 year ago
  1. namespace Common.Model
  2. {
  3. public class NotifiCationInfo
  4. {
  5. public string customerId { get; set; }
  6. }
  7. public class NotifiCationDetailInfo
  8. {
  9. public string rowId { get; set; }
  10. }
  11. public class GetNotifiCationInfo
  12. {
  13. public string rowId { get; set; }
  14. public string title { get; set; }
  15. public string createDate { get; set; }
  16. public string isRead { get; set; }
  17. public string type { get; set; }
  18. public string extra { get; set; }
  19. }
  20. public class GetNotifyCationDetailInfo
  21. {
  22. public string title { get; set; }
  23. public string body { get; set; }
  24. public string createDate { get; set; }
  25. public string imageURL { get; set; }
  26. }
  27. public class GetNotifiCationListInfo
  28. {
  29. public string rowId { get; set; }
  30. public string customerId { get; set; }
  31. public string title { get; set; }
  32. public string body { get; set; }
  33. public string createDate { get; set; }
  34. public string isRead { get; set; }
  35. public string type { get; set; }
  36. public string extra { get; set; }
  37. public string category { get; set; }
  38. public string url { get; set; }
  39. public string isClickable { get; set; }
  40. }
  41. }