use Data anotations
This commit is contained in:
parent
4a5d445616
commit
5a766ed653
1 changed files with 17 additions and 11 deletions
|
|
@ -1,22 +1,28 @@
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class GoogleCloudMobileDeclaration {
|
namespace Yavsc.Models.Identity
|
||||||
|
{
|
||||||
|
[JsonObject]
|
||||||
|
|
||||||
public GoogleCloudMobileDeclaration() {
|
public class GoogleCloudMobileDeclaration {
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
[Required]
|
||||||
public string GCMRegistrationId { get; set; }
|
public string GCMRegistrationId { get; set; }
|
||||||
|
|
||||||
public string DeviceOwnerId { get; set; }
|
[Key,Required]
|
||||||
|
|
||||||
[Key]
|
|
||||||
public string DeviceId { get; set; }
|
public string DeviceId { get; set; }
|
||||||
|
|
||||||
public string Model { get; set; }
|
public string Model { get; set; }
|
||||||
public string Platform { get; set; }
|
public string Platform { get; set; }
|
||||||
public string Version { get; set; }
|
public string Version { get; set; }
|
||||||
/*
|
public string DeviceOwnerId { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
|
||||||
[ForeignKeyAttribute("DeviceOwnerId")]
|
[ForeignKeyAttribute("DeviceOwnerId")]
|
||||||
public virtual ApplicationUser DeviceOwner { get; set; } */
|
public virtual ApplicationUser DeviceOwner { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue