yavsc/Yavsc.Abstract/Interfaces/Models/IGoogleCloudMobileDeclaration.cs

19 lines
455 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00

2017-03-13 16:44:07 +01:00
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; }
}
2017-05-27 16:22:58 +02:00
}