inotify/Inotify/ThridPart/CorePush/Google/FcmResult.cs
2021-04-06 20:05:06 +08:00

16 lines
316 B
C#

using Newtonsoft.Json;
namespace CorePush.Google
{
public class FcmResult
{
[JsonProperty("message_id")]
public string MessageId { get; set; }
[JsonProperty("registration_id")]
public string RegistrationId { get; set; }
public string Error { get; set; }
}
}