Files
yavsc/Yavsc/Interfaces/IGoogleCloudMobileDeclaration.cs
Paul Schneider b7ac60b2a8 refabrique:
* Nouvel espace de noms: Yavsc.Interfaces
* Nouvelle interface : ILifeTime
* Factorisation
2016-07-29 13:37:46 +02:00

18 lines
453 B
C#

namespace Yavsc.Interfaces
{
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; }
}
}