2024-04-07 20:30:19 +04:00

8 lines
154 B
C#

namespace ShipyardContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}