Files
Mapo-IOB/SMGen.Data/DbModels/AnagEventiModel.cs
T
2023-07-26 12:26:41 +02:00

24 lines
608 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;
namespace SMGen.Data.DbModels
{
[Table("AnagraficaEventi")]
public class AnagEventiModel
{
[Key]
public int IdxTipo { get; set; } = 0;
[MaxLength(50)]
public string Nome { get; set; } = "";
[MaxLength(50)]
public string TabAzione { get; set; } = "";
[MaxLength(50)]
public string Azione { get; set; } = "";
}
}