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
|
|
|
|
|
|
{
|
2017-02-07 15:04:58 +01:00
|
|
|
|
using YavscLib;
|
|
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
|
|
|
|
|
|
|
public class GivenGoogleCloudMobileDeclaration : GoogleCloudMobileDeclaration, IGCMDeclaration {
|
|
|
|
|
|
public DateTime? LatestActivityUpdate { get; set; }
|
|
|
|
|
|
}
|
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; }
|
2017-02-07 15:04:58 +01:00
|
|
|
|
|
2017-02-06 17:31:35 +01:00
|
|
|
|
|
2016-07-19 15:44:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
|
}
|