19 lines
706 B
C#
19 lines
706 B
C#
namespace Compliance.Domain.Models
|
|
{
|
|
public class DistributorInformation
|
|
{
|
|
public int DistributorId { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? CNPJ { get; set; }
|
|
public string? Phone { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? State { get; set; }
|
|
public string? Region { get; set; }
|
|
public decimal PISPercentage { get; set; }
|
|
public decimal COFINSPercentage { get; set; }
|
|
public decimal ICMSPercentage { get; set; }
|
|
public string FlagColor { get; set; } = string.Empty;
|
|
public decimal FlagValue { get; set; }
|
|
}
|
|
} |