Files
yavsc/Yavsc.Client/IGoogleCloudMobileDeclaration.cs
2016-07-20 13:52:38 +02:00

13 lines
390 B
C#

namespace Yavsc.Models.Identity
{
public interface IGoogleCloudMobileDeclaration
{
string DeviceId { get; set; }
IApplicationUser DeviceOwner { get; set; }
string DeviceOwnerId { get; set; }
string GCMRegistrationId { get; set; }
string Model { get; set; }
string Platform { get; set; }
string Version { get; set; }
}
}