Files
mapo-core/MP.Data/DbModels/RemoteRebootLogModel.cs

28 lines
809 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
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
}
}