You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace ProRestaurant.Models.Restaurants
  6. {
  7. //WIP
  8. //public class MenuCategory : BaseObject
  9. //{
  10. // public int RestaurantId { get; set; }
  11. // public string Description { get; set; }
  12. //}
  13. //public class MenuItem : BaseObject
  14. //{
  15. // public int RestaurantId { get; set; }
  16. // public int CategoryId { get; set; }
  17. //}
  18. }