Nested SupportAuto Properties100% Private
public class Root
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Email { get; set; }
    public bool Active { get; set; }
    public double Score { get; set; }
    public Address Address { get; set; }
    public List<string> Tags { get; set; }
}

public class Address
{
    public string Street { get; set; }
    public string City { get; set; }
}

FAQ

What C# features are generated?
The tool generates public classes with auto-properties (get; set;). Nested objects create separate class definitions with proper type references.
Are arrays handled?
Yes. JSON arrays are converted to List<T> where T is inferred from the first element of the array.
Can I change the root class name?
Yes. Use the Root class input field to set a custom name for the top-level class.
Share:

Love this tool? Explore 999+ more

Free online tools for images, PDFs, text, code, and more. All running in your browser.

Explore All Tools