Dish.cs 962 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright © 2011-2012 Nokia Corporation. All rights reserved.
  3. * Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation.
  4. * Other product and company names mentioned herein may be trademarks
  5. * or trade names of their respective owners.
  6. * See LICENSE.TXT for license information.
  7. */
  8. using System;
  9. using System.ComponentModel;
  10. namespace wprestaurantapp
  11. {
  12. /// <summary>
  13. /// Model class for a dish. Categories contains one or more dishes
  14. /// </summary>
  15. public class Dish
  16. {
  17. /// <summary>
  18. /// Constructor
  19. /// </summary>
  20. public Dish()
  21. {
  22. }
  23. /// <summary>
  24. /// Property for name of this dish
  25. /// </summary>
  26. public string Name { get; set; }
  27. /// <summary>
  28. /// Property for the description of this dish
  29. /// </summary>
  30. public string Text { get; set; }
  31. }
  32. }