SUBD_Aleikin/Restaurant/RestaurantContracts/SearchModels/OrderSearchModel.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

18 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantContracts.SearchModels
{
public class OrderSearchModel
{
public int? Id { get; set; }
public DateTime? Date { get; set; }
public int? ClientId { get; set; }
}
}