patbef-ServiceOutside/ServiceShared/Models/Request/CheckFileChecksum.cs

49 lines
1.3 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.Device;
using static ServiceShared.Models.Database.Results;
namespace ServiceShared.Models.Request
{
public class CheckFileChecksum
{
/// <summary>
/// SHA512 - Hash of Plz Geburtsdatum Sampleid
/// </summary>
public string pgs { get; set; }
/// <summary>
/// Unique id of mobile device
/// </summary>
public string udid { get; set; }
/// <summary>
/// DeviceToken for notification service
/// </summary>
public string device_token { get; set; }
/// <summary>
/// Type of mobile device
/// </summary>
public DeviceTypes device_type { get; set; }
/// <summary>
/// Public Key of mobile device
/// </summary>
public string client_public_key { get; set; }
/// <summary>
/// Client verification hash
/// </summary>
public string verificator_hash { get; set; }
/// <summary>
/// Filechecksum after decryption, that patient has pickedup
/// </summary>
public string file_checksum { get; set; }
}
}