ISEbd-21_Khaliullov_R.A._Co.../Canteen/CanteenContracts/SearchModel/DishSearchModel.cs

15 lines
291 B
C#
Raw Permalink Normal View History

2024-04-30 18:48:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CanteenContracts.SearchModel
{
public class DishSearchModel
{
public int? Id { get; set; }
public string? DishName { get; set; }
}
}