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

23 lines
543 B
C#

using System.ComponentModel.DataAnnotations;
public class GoogleCloudMobileDeclaration {
10 years ago
public GoogleCloudMobileDeclaration() {
}
public string GCMRegistrationId { get; set; }
public string DeviceOwnerId { get; set; }
[Key]
public string DeviceId { get; set; }
public string Model { get; set; }
public string Platform { get; set; }
public string Version { get; set; }
10 years ago
/*
[ForeignKeyAttribute("DeviceOwnerId")]
10 years ago
public virtual ApplicationUser DeviceOwner { get; set; } */
}