using Gestor.Infrastructure.Entities.Generic; using System; using System.Runtime.CompilerServices; namespace Gestor.Infrastructure.Entities.Seguros { public class RamoDb : EntityBase { public virtual bool Ativo { get; set; } public virtual long CodigoSusep { get; set; } public virtual bool Fatura { get; set; } public virtual decimal Iof { get; set; } public virtual string Nome { get; set; } public virtual string RamoSusep { get; set; } public RamoDb() { } } }