using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceShared.Models.Response { public class Download { /// /// SHA512 - Hash of Plz Geburtsdatum Sampleid /// public string pgs { get; set; } /// /// Unique id of mobile device /// public string udid { get; set; } /// /// Encrypted content /// public string encrypted_content { get; set; } /// /// Encrypted public key, that was used for the encryption by server side /// public string server_public_key { get; set; } } }