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.

21 lines
531 B

1 year ago
  1. namespace Common
  2. {
  3. public class PushNotificationPayload
  4. {
  5. public string to { get; set; }
  6. public string collapse_key { get; set; }
  7. public object data { get; set; }
  8. public Notification notification { get; set; }
  9. }
  10. public class Notification
  11. {
  12. public string body { get; set; }
  13. public string title { get; set; }
  14. }
  15. public class FireBaseLogResponseViewModel
  16. {
  17. public string Response { get; set; }
  18. public string Data { get; set; }
  19. }
  20. }