yavsc/Yavsc.Client/IGoogleCloudMobileDeclarati...

18 lines
458 B
C#

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