34 lines
957 B
C#
34 lines
957 B
C#
using System;
|
|
|
|
namespace line_gestao_api.Models
|
|
{
|
|
public class VigenciaLine : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public int Item { get; set; }
|
|
|
|
public string? Conta { get; set; }
|
|
public string? Linha { get; set; }
|
|
|
|
public string? Cliente { get; set; }
|
|
public string? Usuario { get; set; }
|
|
|
|
public string? PlanoContrato { get; set; }
|
|
|
|
public DateTime? DtEfetivacaoServico { get; set; }
|
|
public DateTime? DtTerminoFidelizacao { get; set; }
|
|
public int? AutoRenewYears { get; set; }
|
|
public DateTime? AutoRenewReferenceEndDate { get; set; }
|
|
public DateTime? AutoRenewConfiguredAt { get; set; }
|
|
public DateTime? LastAutoRenewedAt { get; set; }
|
|
|
|
public decimal? Total { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
}
|