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.

28 lines
635 B

1 year ago
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Common.Model.Notification
  8. {
  9. public class NotificationDTO
  10. {
  11. [JsonProperty("body")]
  12. public string Body { get; set; }
  13. [JsonProperty("title")]
  14. public string Title { get; set; }
  15. [JsonProperty("image")]
  16. public string Image { get; set; }
  17. public List<AttachmentModel> Attachments { get; set; }
  18. public List<AttachmentModel> EmbeddedResources { get; set; }
  19. public string ClickActivity { get; set; }
  20. }
  21. }