Advertisement
Guest User

Untitled

a guest
Oct 1st, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class DropDownViewModel
  2. {
  3. public ICollection<CarModelViewModel> Models { get; set; }
  4.  
  5. public ICollection<CarYearViewModel> CarYears { get; set; }
  6.  
  7. public ICollection<CarMakeViewModel> Makes { get; set; }
  8.  
  9. public int SelectedModelId { get; set; }
  10.  
  11. public int SelectedCarYearId { get; set; }
  12.  
  13. public int SelectedMakeId { get; set; }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement