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

16 lines
327 B
C#

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