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

17 lines
375 B
C#
Raw Normal View History

2023-06-19 09:12:18 +04:00
using CanteenContracts.View;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.ViewModels
{
public class ReportCooksPCView
{
public int CookId{ get; set; }
public string FIO { get; set; }
public List<LunchViewModel> Lunches { get; set; }
}
}