PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/SearchModels/ShopSearchModel.cs

14 lines
304 B
C#
Raw Normal View History

2023-04-21 04:43:43 +04:00
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; }
}
}