Advertisement
Guest User

DishImage Entity CLass

a guest
Aug 5th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1.     public class DishImage
  2.     {
  3.         // pk
  4.         public int DishImageID { get; set; }
  5.        
  6.         // fk
  7.         public int DishID { get; set; }
  8.  
  9.         public string ImagePath { get; set; }
  10.  
  11.         // Navigation
  12.         public Dish Dish { get; set; }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement