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

32 lines
780 B
C#
Raw 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;
namespace ServiceShared.Models.Response
{
public class Download
{
/// <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>
/// Encrypted content
/// </summary>
public string encrypted_content { get; set; }
/// <summary>
/// Encrypted public key, that was used for the encryption by server side
/// </summary>
public string server_public_key { get; set; }
}
}