PIbd-21_Barsukov_P.O._Compu.../ComputersShop/ComputersShopContracts/SearchModels/OrderSearchModel.cs

14 lines
253 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}