namespace line_gestao_api.Models { public class BillingClient { public Guid Id { get; set; } public string Tipo { get; set; } = "PF"; // "PF" ou "PJ" 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 DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } } }