30 lines
725 B
C#
30 lines
725 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 decimal? Total { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
}
|