57c41c7a60
- fix naming DbModels
32 lines
919 B
C#
32 lines
919 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.FileData.DbModels
|
|
{
|
|
[Table("Macchine")]
|
|
public partial class ArchMaccModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key]
|
|
public string IdxMacchina { get; set; } = "";
|
|
public string RuleName { get; set; } = "";
|
|
public string Nome { get; set; } = "";
|
|
public string Descrizione { get; set; } = "";
|
|
public string BasePath { get; set; } = "";
|
|
public string ImgUrl { get; set; } = "";
|
|
public string Note { get; set; } = "";
|
|
public int ShowOrder { get; set; } = 999;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|