Y2S1-Web_Apps_and_Services/ThAmCo.Catering/Data/Menu.cs
2020-06-07 22:36:12 +01:00

19 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Catering.Data
{
public class Menu
{
public int Id { get; set; }
public string Items { get; set; }
public double Price { get; set; }
public List<FoodBooking> FoodBookings { get; set; }
}
}