Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class DishImage
- {
- // pk
- public int DishImageID { get; set; }
- // fk
- public int DishID { get; set; }
- public string ImagePath { get; set; }
- // Navigation
- public Dish Dish { get; set; }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement