27 lines
734 B
C#
27 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
[Table("Macchine")]
|
|
public partial class MacchineModel
|
|
{
|
|
#region Public Properties
|
|
|
|
public string IdxMacchina { get; set; }
|
|
public string CodMacchina { get; set; }
|
|
public string Nome { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public string Locazione { get; set; }
|
|
public string Note { get; set; }
|
|
public string Css { get; set; }
|
|
public string Url { get; set; }
|
|
public int ColNum { get; set; }
|
|
public int RowNum { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |