using System; using System.Runtime.CompilerServices; 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; } public Diferenca() { } } }