using System; using System.Collections.Generic; // // This is here so CodeMaid doesn't reorganize this document // namespace GPW.Data.DBModels { public partial class CheckVc19 { public int IdxCheckVc19 { get; set; } public DateTime DtCheck { get; set; } public int IdxDipendente { get; set; } = 0; public string Cognome { get; set; } = ""; public string Nome { get; set; } = ""; public DateTime DOB { get; set; } public string Payload { get; set; } } }