using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static ServiceShared.Models.Database.Results; namespace ServiceShared.Models.Response { public class Notification { /// /// Status of results /// public ResultsStatus status { get; set; } /// /// SHA512 - Hash of Plz Geburtsdatum Sampleid /// public string pgs { get; set; } /// /// Device unique id /// public string udid { get; set; } /// /// Flag for push available /// public bool available { get; set; } /// /// Timestamp for available /// public DateTime? available_ts { get; set; } /// /// Created date of results object(this) /// public DateTime created { get; set; } } }