PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/SearchModels/CookSearchModel.cs

16 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.SearchModel
{
public class CookSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
public int? ManagerId { get; set; }
}
}