Untitled
unknown
plain_text
2 years ago
788 B
8
Indexable
public class Marca : BaseEntity
{
public int Id { get; set; }
public string Nombre { get; set; } = null;
public string FuncionCatalogo { get; set; } = null;
public bool Activo { get; set; }
public string TipoDato { get; set; } = null;
public bool? CaracteristicaUso { get; set; }
public string? TipoMarca { get; set; }
public string? Codigo { get; set; }
public virtual ICollection<ValorMarca> ValoresMarcas { get; set; }
public virtual ICollection<MarcasXPlantilla> MarcasXPlantillas { get; set; }
public Marca()
{
ValoresMarcas = new HashSet<ValorMarca>();
MarcasXPlantillas = new HashSet<MarcasXPlantilla>();
}
}Editor is loading...