summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Generic/Diferenca.cs
blob: 9c1265e9c12a88e9cfadd1d704d9a91f991361cc (plain)
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; }
}