line-gestao-api/Models/ResumoMacrophonyPlan.cs

20 lines
584 B
C#

namespace line_gestao_api.Models;
public class ResumoMacrophonyPlan : 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 bool VivoTravel { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}