yavsc/Yavsc.Api/Model/Identity/MobileAppDeclaration.cs

22 lines
543 B
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System.ComponentModel.DataAnnotations;
public class GoogleCloudMobileDeclaration {
2016-07-07 15:45:21 +02:00
public GoogleCloudMobileDeclaration() {
}
2016-07-03 23:57:33 +02:00
public string GCMRegistrationId { get; set; }
2016-05-30 13:54:52 +02:00
public string DeviceOwnerId { get; set; }
2016-07-03 23:57:33 +02:00
[Key]
public string DeviceId { get; set; }
2016-05-30 13:54:52 +02:00
2016-07-03 23:57:33 +02:00
public string Model { get; set; }
public string Platform { get; set; }
public string Version { get; set; }
2016-07-07 15:45:21 +02:00
/*
2016-05-30 13:54:52 +02:00
[ForeignKeyAttribute("DeviceOwnerId")]
2016-07-07 15:45:21 +02:00
public virtual ApplicationUser DeviceOwner { get; set; } */
2016-05-17 18:22:18 +02:00
}