PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/LunchOrderViewModel.cs

16 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.ViewModels
{
public class LunchOrderViewModel
{
public int Id { get; set; }
public int LunchId { get; set; }
public int OrderId { get; set; }
}
}