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.
 
 
 

22 lines
531 B

namespace Common
{
public class PushNotificationPayload
{
public string to { get; set; }
public string collapse_key { get; set; }
public object data { get; set; }
public Notification notification { get; set; }
}
public class Notification
{
public string body { get; set; }
public string title { get; set; }
}
public class FireBaseLogResponseViewModel
{
public string Response { get; set; }
public string Data { get; set; }
}
}