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

16 lines
327 B
C#
Raw Permalink Normal View History

2023-04-09 13:00:51 +04:00
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; }
}
}