Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/SearchModels/OrderSearchModel.cs

14 lines
252 B
C#
Raw Normal View History

2023-02-05 18:55:08 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}