using Gestor.Infrastructure.Entities.Generic; using System; using System.Runtime.CompilerServices; namespace Gestor.Infrastructure.Entities.Seguros { public class ProdutoDb : EntityBase { public virtual bool Ativo { get; set; } public virtual string Nome { get; set; } public ProdutoDb() { } } }