8 lines
154 B
C#
Raw Normal View History

2024-04-07 20:30:19 +04:00
namespace ShipyardContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}