選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

MenuCategory.cs 442B

123456789101112131415
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace ProRestaurant.Models.Restaurants
  4. {
  5. public class MenuCategory : BaseObject
  6. {
  7. [ForeignKey("Restaurant")]
  8. public int RestaurantId { get; set; }
  9. public string Description { get; set; }
  10. public virtual Restaurant Restaurant { get; set; }
  11. public ICollection<MenuOption> Options { get; set; }
  12. }
  13. }