using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace GPW.Api { /// /// Esito chiamata VC19 /// 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 } }