25 lines
999 B
C#
25 lines
999 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class TaxInformation
|
|
{
|
|
public int DistributorId { get; set; }
|
|
public string? Month { get; set; }
|
|
public decimal PISValue { get; set; }
|
|
public decimal COFINSValue { get; set; }
|
|
public decimal ICMSValue { get; set; }
|
|
public decimal IRRFValue { get; set; }
|
|
public decimal INSSValue { get; set; }
|
|
public decimal ISSValue { get; set; }
|
|
public decimal CSLLValue { get; set; }
|
|
public decimal IRPJValue { get; set; }
|
|
public decimal PISRetencaoValue { get; set; }
|
|
public decimal COFINSRetencaoValue { get; set; }
|
|
public decimal ICMSRetencaoValue { get; set; }
|
|
public decimal IRRFRetencaoValue { get; set; }
|
|
public string? TaxType { get; set; }
|
|
public string? State { get; set; }
|
|
public string? Municipality { get; set; }
|
|
public decimal Rate { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
} |