patbef-ServiceOutside/ServiceShared/Models/Database/Traces.cs

42 lines
980 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Database
{
public class Traces
{
/// <summary>
/// Id of trace log from database (PK)
/// </summary>
public long Id { get; set; }
/// <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>
/// Message of trace log
/// </summary>
public string Message { get; set; }
/// <summary>
/// Type of trace log
/// </summary>
public Log.Types TraceType { get; set; }
/// <summary>
/// Created timestamp of trace type
/// </summary>
public DateTime Created { get; set; }
}
}