refabrique

This commit is contained in:
2016-07-20 13:52:38 +02:00
parent 0d977ff6fe
commit ec9bb2ca58
34 changed files with 3476 additions and 35 deletions

View File

@ -0,0 +1,13 @@
namespace Yavsc.Models.Identity
{
public interface IGoogleCloudMobileDeclaration
{
string DeviceId { get; set; }
IApplicationUser DeviceOwner { get; set; }
string DeviceOwnerId { get; set; }
string GCMRegistrationId { get; set; }
string Model { get; set; }
string Platform { get; set; }
string Version { get; set; }
}
}