23 lines
564 B
C#
23 lines
564 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
public partial class StatODLModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public int IdxStato { get; set; }
|
|
public string Descrizione { get; set; } = "";
|
|
public string Semaforo { get; set; }
|
|
public string Css { get; set; }
|
|
public double TotDurata { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |