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 { /// /// SHA512 - Hash of Plz Geburtsdatum Sampleid /// public string pgs { get; set; } /// /// Unique id of mobile device /// public string udid { get; set; } /// /// DeviceToken for notification service /// public string device_token { get; set; } /// /// Type of mobile device /// public DeviceTypes device_type { get; set; } /// /// Public Key of mobile device /// public string client_public_key { get; set; } /// /// Client verification hash /// public string verificator_hash { get; set; } /// /// Filechecksum after decryption, that patient has pickedup /// public string file_checksum { get; set; } } }