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

15 lines
305 B
C#

namespace CorePush.Google
{
public class FcmSettings
{
/// <summary>
/// FCM Sender ID
/// </summary>
public string SenderId { get; set; }
/// <summary>
/// FCM Server Key
/// </summary>
public string ServerKey { get; set; }
}
}