PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopContracts/SearchModels/OrderSearchModel.cs

14 lines
248 B
C#
Raw Permalink Normal View History

2023-04-30 02:34:19 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GiftShopContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}