29 lines
835 B
C#
29 lines
835 B
C#
namespace line_gestao_api.Models
|
|
{
|
|
public class BillingClient : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid TenantId { 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; }
|
|
}
|
|
}
|