using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("RegistroEventi")] public partial class RegistroEventiModel { public DateTime DataOra { get; set; } public string Evento { get; set; } = null!; public string? Commento { get; set; } = ""; } }