Last active
July 1, 2016 20:53
-
-
Save JudahGabriel/eb582979d33ca23d3db1ed2544f3deee to your computer and use it in GitHub Desktop.
This file contains 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
/// <summary> | |
/// View model for a Recipe. Contains everything we want to display on the Recipe details UI page. | |
/// </summary> | |
public class RecipeViewModel | |
{ | |
public string RecipeId { get; set; } | |
public string Name { get; set; } | |
public string PictureUrl { get; set; } | |
public List<Ingredient> Ingredients { get; set; } | |
public List<string> Categories { get; set; } | |
public string ChefName { get; set; } | |
public string ChefEmail { get; set; } | |
public IList<Comment> Comments { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment