yavsc/Yavsc.Client/IGoogleCloudMobileDeclaration.cs

18 lines
458 B
C#
Raw Normal View History

2016-07-20 13:52:38 +02:00
namespace Yavsc.Models.Identity
{
2016-07-21 22:02:53 +02:00
public interface IGCMDeclaration
2016-07-20 13:52:38 +02:00
{
string DeviceId { get; set; }
string GCMRegistrationId { get; set; }
string Model { get; set; }
string Platform { get; set; }
string Version { get; set; }
2016-07-21 22:02:53 +02:00
}
public interface IGoogleCloudMobileDeclaration: IGCMDeclaration
{
IApplicationUser DeviceOwner { get; set; }
string DeviceOwnerId { get; set; }
2016-07-20 13:52:38 +02:00
}
}