13 lines
259 B
C#
Raw Normal View History

2024-02-09 20:42:20 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-03-05 07:44:51 +04:00
namespace PrecastConcretePlantContracts.SearchModels
2024-02-09 20:42:20 +04:00
{
2024-03-05 07:44:51 +04:00
public class OrderSearchModel
2024-02-09 20:42:20 +04:00
{
2024-03-05 07:44:51 +04:00
public int? Id { get; set; }
2024-02-09 20:42:20 +04:00
}
2024-03-05 07:44:51 +04:00
}