Skip to content

Instantly share code, notes, and snippets.

@JeremyLikness
Created August 26, 2017 17:18
Show Gist options
  • Select an option

  • Save JeremyLikness/3dae5f234aa3a398c7c08b73bca2118a to your computer and use it in GitHub Desktop.

Select an option

Save JeremyLikness/3dae5f234aa3a398c7c08b73bca2118a to your computer and use it in GitHub Desktop.
Food Item definition for CosmosDB example app
public class FoodItem
{
public string FoodId { get; set; }
public string FoodGroupId { get; set; }
public FoodGroup Group { get; set; }
public string Description { get; set; }
public string ShortDescription { get; set; }
public string CommonNames { get; set; }
public string Inedible { get; set; }
public Weight[] Weights { get; set; }
public Nutrient[] Nutrients { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment