14 lines
250 B
C#
Raw Normal View History

2024-02-12 12:46:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TypographyContracts.SearchModels
2024-02-12 12:46:44 +04:00
{
public class OrderSearchModel
{
public int? Id { get; set; }
}
}