2023-02-12 15:11:10 +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; }
|
2023-04-09 19:05:11 +04:00
|
|
|
|
public string? Name { get; set; }
|
2023-02-12 15:11:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|