Files
mapo-core/MP.Data/DatabaseModels/StatODLModel.cs
T
Samuele Locatelli c28dae0c8d SPEC, statistiche ODL:
-aggiunta model e controllo x recupero stat da stored
2022-10-08 17:47:47 +02:00

25 lines
668 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
{
public partial class StatODLModel
{
#region Public Properties
public int IdxStato { get; set; }
public string DescrizioneCodArticolo { get; set; } = "";
public string Semaforo { get; set; }
public string Css { get; set; }
public decimal TotDurata { get; set; }
#endregion Public Properties
}
}