line-gestao-api/Dtos/BillingClientListDto.cs

42 lines
1.4 KiB
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; }
}
public class BillingClientDetailDto : BillingClientListDto
{
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
public class UpdateBillingClientRequest
{
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; }
}
}