PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/SearchModels/ShopSearchModel.cs
2024-04-14 02:36:43 +04:00

9 lines
181 B
C#

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