using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("RemoteRebootLog")] public partial class RemoteRebootLogModel { #region Public Properties [Key, Column("idxReboot")] public int IdxReboot { get; set; } public string IdxMacchina { get; set; } public string IPv4 { get; set; } = ""; public string Agent { get; set; } = ""; public DateTime DataOraBoot { get; set; } = DateTime.Today.AddYears(-10); [Column("macAddr")] public string MacAddr { get; set; } = ""; #endregion Public Properties } }