30 lines
818 B
C#
30 lines
818 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; } = "";
|
|
[MaxLength(50)]
|
|
public string KeyEvento { get; set; } = "";
|
|
|
|
public bool EventoTablet { get; set; } = false;
|
|
[MaxLength(50)]
|
|
public string NoteEvento { get; set; } = "";
|
|
}
|
|
}
|