Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created February 24, 2024 13:48
Show Gist options
  • Save renatogroffe/8b70ffe17054a318e3f289f1f88a923a to your computer and use it in GitHub Desktop.
Save renatogroffe/8b70ffe17054a318e3f289f1f88a923a to your computer and use it in GitHub Desktop.
namespace ConsoleAppDefaultWebOptions.Models;
public class Localidade
{
public int Id { get; set; }
public string? NomeContinente { get; set; }
public string? NomePais { get; set; }
public string? NomeCidade { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment