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; } } }