9 lines
181 B
C#
9 lines
181 B
C#
|
namespace CarRepairShopContracts.SearchModels
|
|||
|
{
|
|||
|
public class ShopSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
public string? ShopName { get; set; }
|
|||
|
}
|
|||
|
}
|