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

21 lines
597 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("MicroStatoMacchina")]
public partial class MicroStatoMacchinaModel
{
[Key]
public string IdxMacchina { get; set; } = "NA";
public int IdxMicroStato { get; set; } = 0;
public DateTime InizioStato { get; set; } = DateTime.Now;
public string Value { get; set; } = "";
}
}