10 lines
158 B
C#
Raw Normal View History

2024-05-05 21:43:24 +04:00

2024-05-01 21:35:57 +04:00
namespace MotorPlantContracts.SearchModels
{
2024-05-05 21:43:24 +04:00
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
2024-05-01 21:35:57 +04:00
}