PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/SearchModels/ShopSearchModel.cs

14 lines
297 B
C#
Raw Normal View History

2024-02-18 12:22:10 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}