28 lines
856 B
C#
28 lines
856 B
C#
using System;
|
|
|
|
namespace line_gestao_api.Dtos
|
|
{
|
|
public class MuregDetailDto
|
|
{
|
|
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? DataDaMureg { get; set; }
|
|
|
|
// ✅ FK para a linha “canônica” na GERAL
|
|
public Guid MobileLineId { get; set; }
|
|
|
|
// ✅ Dados vindos da GERAL (MobileLines)
|
|
public string? Cliente { get; set; }
|
|
public string? Usuario { get; set; }
|
|
public string? Skil { get; set; }
|
|
public string? LinhaAtualNaGeral { get; set; }
|
|
public string? ChipNaGeral { get; set; }
|
|
public string? ContaNaGeral { get; set; }
|
|
public string? StatusNaGeral { get; set; }
|
|
}
|
|
}
|