line-gestao-api/Models/ResumoPlanoContratoResumo.cs

19 lines
548 B
C#

namespace line_gestao_api.Models;
public class ResumoPlanoContratoResumo : ITenantEntity
{
public Guid Id { get; set; } = Guid.NewGuid();
public Guid TenantId { get; set; }
public string? PlanoContrato { get; set; }
public decimal? Gb { get; set; }
public decimal? ValorIndividualComSvas { get; set; }
public decimal? FranquiaGb { get; set; }
public int? TotalLinhas { get; set; }
public decimal? ValorTotal { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}