yavsc/Yavsc.Api/Model/Identity/MobileAppDeclaration.cs
2016-07-07 15:45:21 +02:00

22 lines
543 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; } */
}