PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/SearchModels/CookSearchModel.cs
Алина Батылкина 6d3c7c0a5d models and contracts are ready
2023-04-07 21:53:52 +04:00

15 lines
289 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 int? ManagerId { get; set; }
}
}