using Gestor.Infrastructure.Entities.Generic; using Gestor.Infrastructure.Entities.Seguros; using System; using System.Runtime.CompilerServices; namespace Gestor.Infrastructure.Entities.Ferramentas { public class ImpostoDb : EntityBase { public virtual bool Ativo { get; set; } public virtual decimal Desconto { get; set; } public virtual decimal Ir { get; set; } public virtual decimal Iss { get; set; } public virtual decimal Outros { get; set; } public virtual RamoDb Ramo { get; set; } public virtual SeguradoraDb Seguradora { get; set; } public ImpostoDb() { } } }