using System.ComponentModel.DataAnnotations; namespace MP.Data.DbModels { public class vSelEventiBCodeModel { [Key] public int value { get; set; } = 0; public string label { get; set; } = ""; public bool EventoTablet { get; set; } = true; public string CssClass { get; set; } = ""; public string Icon { get; set; } = ""; } }