Files
mapo-core/MP.Data/DatabaseModels/Macchine.cs
T
Samuele Locatelli ead4fa4909 Fix stats x modello dati amcchine:
- chiedeva valori accessori
- non mappati nel sinonimo
2023-01-05 15:59:59 +01:00

32 lines
959 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("Macchine")]
public partial class Macchine
{
#region Public Properties
[Key]
public string IdxMacchina { get; set; }
public string CodMacchina { get; set; } = "";
public string Nome { get; set; } = "";
public string Descrizione { get; set; } = "";
//public string Note { get; set; } = "";
//public string url { get; set; } = "";
//public string locazione { get; set; } = "";
//public string css { get; set; } = "";
//public int RowNum { get; set; } = 0;
//public int ColNum { get; set; } = 0;
#endregion Public Properties
}
}