Created
August 26, 2017 17:18
-
-
Save JeremyLikness/3dae5f234aa3a398c7c08b73bca2118a to your computer and use it in GitHub Desktop.
Food Item definition for CosmosDB example app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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