This commit is contained in:
2025-05-31 10:58:30 -03:00
commit 1cb7645910
48 changed files with 2235 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
namespace OpenCand.Core.Models
{
public class BemCandidato
{
public Guid IdCandidato { get; set; }
// Only for fetching purposes
public string? SqCandidato { get; set; }
public int Ano { get; set; }
public string SiglaUF { get; set; }
public string NomeUE { get; set; }
public int OrdemBem { get; set; }
public string? TipoBem { get; set; }
public string? Descricao { get; set; }
public decimal? Valor { get; set; }
}
}