24 lines
572 B
C#
24 lines
572 B
C#
using System;
|
|
|
|
namespace line_gestao_api.Dtos
|
|
{
|
|
public class MuregListDto
|
|
{
|
|
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; }
|
|
|
|
// ✅ Cliente vem da MobileLine (GERAL)
|
|
public string? Cliente { get; set; }
|
|
|
|
// ✅ Novo: referência do registro "canônico" na GERAL
|
|
public Guid MobileLineId { get; set; }
|
|
}
|
|
}
|