line-gestao-api/Models/TrocaNumeroLine.cs

24 lines
556 B
C#

using System;
namespace line_gestao_api.Models
{
public class TrocaNumeroLine
{
public Guid Id { 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; }
}
}