Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 28, 2018 21:52
Show Gist options
  • Save bjoerntx/6cf1afb5d79754f8c6d89cb367802a12 to your computer and use it in GitHub Desktop.
Save bjoerntx/6cf1afb5d79754f8c6d89cb367802a12 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