14 lines
253 B
C#
Raw Normal View History

2024-04-28 21:24:09 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-05-03 22:09:36 +04:00
namespace TravelCompanyContracts.SearchModels
2024-04-28 21:24:09 +04:00
{
2024-05-03 22:09:36 +04:00
public class OrderSearchModel
2024-04-28 21:24:09 +04:00
{
public int? Id { get; set; }
}
}