line-gestao-api/Models/ResumoVivoLineResumo.cs

21 lines
628 B
C#

namespace line_gestao_api.Models;
public class ResumoVivoLineResumo : ITenantEntity
{
public Guid Id { get; set; } = Guid.NewGuid();
public Guid TenantId { get; set; }
public string? Skil { get; set; }
public string? Cliente { get; set; }
public int? QtdLinhas { get; set; }
public decimal? FranquiaTotal { get; set; }
public decimal? ValorContratoVivo { get; set; }
public decimal? FranquiaLine { get; set; }
public decimal? ValorContratoLine { get; set; }
public decimal? Lucro { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}