line-gestao-api/Dtos/BillingClientListDto.cs

21 lines
662 B
C#

namespace line_gestao_api.Dtos
{
public class BillingClientListDto
{
public Guid Id { get; set; }
public string Tipo { get; set; } = "";
public int Item { get; set; }
public string Cliente { get; set; } = "";
public int? QtdLinhas { get; set; }
public decimal? FranquiaVivo { get; set; }
public decimal? ValorContratoVivo { get; set; }
public decimal? FranquiaLine { get; set; }
public decimal? ValorContratoLine { get; set; }
public decimal? Lucro { get; set; }
public string? Aparelho { get; set; }
public string? FormaPagamento { get; set; }
}
}