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

16 lines
329 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 LunchOrderViewModel
{
public int Id { get; set; }
public int LunchId { get; set; }
public int OrderId { get; set; }
}
}