Files
mapo-core/MP.Data/DatabaseModels/MicroStatoMacchinaModel.cs
T
Samuele Locatelli 695b46bb49 TAB3:
- Gestione fermate RT
- fix lettura h2IOB
2023-10-06 15:43:44 +02:00

22 lines
637 B
C#

using System;
using System.Collections.Generic;
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.DatabaseModels
{
[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; } = "";
}
}