16 lines
340 B
C#
16 lines
340 B
C#
using CanteenContracts.View;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CanteenContracts.ViewModels
|
|
{
|
|
public class ReportCookView
|
|
{
|
|
public LunchViewModel Lunch { get; set; }
|
|
public List<CookViewModel> Cooks { get; set; }
|
|
}
|
|
}
|