patbef-ServiceOutside/ServiceShared/Models/Response/Notification.cs

43 lines
1.0 KiB
C#
Raw Permalink Normal View History

2024-01-29 16:27:34 +01:00
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
{
/// <summary>
/// Status of results
/// </summary>
public ResultsStatus status { get; set; }
/// <summary>
/// SHA512 - Hash of Plz Geburtsdatum Sampleid
/// </summary>
public string pgs { get; set; }
/// <summary>
/// Device unique id
/// </summary>
public string udid { get; set; }
/// <summary>
/// Flag for push available
/// </summary>
public bool available { get; set; }
/// <summary>
/// Timestamp for available
/// </summary>
public DateTime? available_ts { get; set; }
/// <summary>
/// Created date of results object(this)
/// </summary>
public DateTime created { get; set; }
}
}