Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Ingredient : BaseEntity
  2. {
  3. public string Name { get; set; }
  4. public int Amount { get; set; }
  5. [ForeignKey("Recipe")]
  6. public int RecipeId { get; set; }
  7. public Recipe Recipe { get; set; }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement