14 lines
257 B
C#
Raw Permalink Normal View History

2023-05-21 20:35:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}