PipefyProspUpdate/Models/IbgeResponse.cs

13 lines
281 B
C#

using System.Collections.Generic;
namespace PipefyProspUpdate.Models
{
public class Suggestion
{
public string? ID { get; set; }
public string? UF { get; set; }
public string? Meso { get; set; }
public string? City { get; set; }
}
}