Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 22, 2018 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/48fccd79ed3cf14d50f3e85423d8d7b3 to your computer and use it in GitHub Desktop.
Save bjoerntx/48fccd79ed3cf14d50f3e85423d8d7b3 to your computer and use it in GitHub Desktop.
public class Report
{
public string Name { get; set; }
public List<Product> Products { get; set; }
}
public class Product
{
public string Name { get; set; }
public float Price { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment