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

23 lines
543 B
C#

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

using System.ComponentModel.DataAnnotations;
public class GoogleCloudMobileDeclaration {
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; }
/*
[ForeignKeyAttribute("DeviceOwnerId")]
public virtual ApplicationUser DeviceOwner { get; set; } */
}