PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/SearchModels/ShopSearchModel.cs

9 lines
181 B
C#
Raw Normal View History

2024-04-14 02:36:43 +04:00
namespace CarRepairShopContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}