yavsc/Yavsc/Interfaces/IGoogleCloudMobileDeclaration.cs

18 lines
453 B
C#
Raw Normal View History

namespace Yavsc.Interfaces
2016-07-27 10:55:44 +02:00
{
public interface IGCMDeclaration
{
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; }
}
}