您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MenuItem.cs 469B

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. }