Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created March 13, 2023 11:01
Show Gist options
  • Save renatogroffe/b7fdedb902724f971c469bc30c17fe03 to your computer and use it in GitHub Desktop.
Save renatogroffe/b7fdedb902724f971c469bc30c17fe03 to your computer and use it in GitHub Desktop.
using System.Text.Json.Serialization;
namespace ConsoleAppJsonUnmapped.Models;
[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Disallow)]
public class Pessoa
{
public string? Nome { get; set; }
public int Idade { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment