1 2 3 4 5 6 7 8 9 10 11 12
namespace Gestor.Model.Domain.Generic; public class Diferenca { public string Campo { get; set; } public string Descricao { get; set; } public string ValorAnterior { get; set; } public string ValorAtual { get; set; } }