help
Root Question Message
public class Data
{
public Properties properties { get; set; }
}
public class Properties
{
public int id { get; set; }
public string initials { get; set; }
public string name { get; set; }
}
public class Results
{
public Data data { get; set; }
}
public class NoteModel
{
public Results results { get; set; }
}
NoteModel result = await ... ;
string nameData = result.results.data.properties.name;
System.Text.Json
does. I prefer using records here, plus using C#-proper PascalCase
casing for properties."I don't maintain projects with hundreds of models"
means that I don't know how well the process scales past ~100 models in terms of maintainability.