yavsc/Yavsc/Model/Identity/MobileAppDeclaration.cs

27 lines
705 B
C#
Raw Normal View History

2016-07-27 10:55:44 +02:00
using System;
2016-05-17 18:22:18 +02:00
using System.ComponentModel.DataAnnotations;
2016-07-19 15:44:36 +02:00
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
2016-05-17 18:22:18 +02:00
2016-07-19 15:44:36 +02:00
namespace Yavsc.Models.Identity
{
[JsonObject]
2016-07-07 15:45:21 +02:00
2016-07-19 15:44:36 +02:00
public class GoogleCloudMobileDeclaration {
[Required]
2016-07-03 23:57:33 +02:00
public string GCMRegistrationId { get; set; }
2016-05-30 13:54:52 +02:00
2016-07-19 15:44:36 +02:00
[Key,Required]
2016-07-03 23:57:33 +02:00
public string DeviceId { get; set; }
2016-07-19 15:44:36 +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-19 15:44:36 +02:00
public string DeviceOwnerId { get; set; }
2016-07-27 10:55:44 +02:00
public DateTime DeclarationDate { get; set; }
2016-07-20 13:52:38 +02:00
[JsonIgnore,ForeignKey("DeviceOwnerId")]
2016-07-19 15:44:36 +02:00
public virtual ApplicationUser DeviceOwner { get; set; }
}
2016-05-17 18:22:18 +02:00
}