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

22 lines
471 B
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;
namespace ServiceShared.Models.Request
{
public class CheckResults
{
/// <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; }
}
}