26 lines
616 B
C#
26 lines
616 B
C#
using System;
|
|
|
|
namespace line_gestao_api.Models
|
|
{
|
|
public class TrocaNumeroLine : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public int Item { get; set; }
|
|
|
|
public string? LinhaAntiga { get; set; }
|
|
public string? LinhaNova { get; set; }
|
|
public string? ICCID { get; set; }
|
|
|
|
public DateTime? DataTroca { get; set; }
|
|
|
|
public string? Motivo { get; set; }
|
|
public string? Observacao { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
}
|