PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaContracts/SearchModels/ShopSearchModel.cs
2023-02-21 01:01:02 +03:00

15 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}