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_Chk")] public class AnagEventiModelTemp { [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; } = ""; } }