21 lines
434 B
C#
21 lines
434 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
namespace ThAmCo.Catering.Data
|
|||
|
{
|
|||
|
public class FoodBooking
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int MenuId { get; set; }
|
|||
|
|
|||
|
public Menu Menu { get; set; }
|
|||
|
|
|||
|
public string Notes { get; set; }
|
|||
|
}
|
|||
|
}
|