Files
gpw_next/GPW.Api/VC19Check.cs
T
2022-01-26 08:34:34 +01:00

22 lines
524 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GPW.Api
{
/// <summary>
/// Esito chiamata VC19
/// </summary>
public class VC19Check
{
#region Public Properties
public bool CheckRecorded { get; set; } = true;
public DateTime DTRecord { get; set; } = DateTime.Now;
public string Result { get; set; } = "";
public bool TimbrRecorder { get; set; } = false;
#endregion Public Properties
}
}