Files
yavsc/ZicMoove/ZicMoove/Model/Auth/GCRegIdDeclaration.cs
2017-02-17 16:23:46 +01:00

27 lines
478 B
C#

using System;
using YavscLib;
namespace ZicMoove.Model.Auth
{
public class GCMRegIdDeclaration : IGCMDeclaration
{
public string DeviceId
{ get; set; }
public string GCMRegistrationId
{ get; set; }
public DateTime? LatestActivityUpdate
{ get; set; }
public string Model
{ get; set; }
public string Platform
{ get; set; }
public string Version
{ get; set; }
}
}