Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created November 28, 2018 22:35
Show Gist options
  • Save bjoerntx/7986f0f8f857bd8b1845bf4ac4d6e3b0 to your computer and use it in GitHub Desktop.
Save bjoerntx/7986f0f8f857bd8b1845bf4ac4d6e3b0 to your computer and use it in GitHub Desktop.
public class Report
{
public string Name { get; set; }
public bool RenderProducts { 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