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,19 @@
using OpenCand.Core.Models;
namespace OpenCand.API.Model
{
public class CandidatoSearchResult
{
public List<Candidato> Candidatos { get; set; }
}
public class BemCandidatoResult
{
public List<BemCandidato> Bens { get; set; }
}
public class RedeSocialResult
{
public List<RedeSocial> RedesSociais { get; set; }
}
}