PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/SearchModels/ShopSearchModel.cs
2023-04-21 03:43:43 +03:00

14 lines
304 B
C#

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