30 lines
686 B
C#
30 lines
686 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.SearchModels
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Модель поиска для сущности "Счет"
|
|||
|
/// </summary>
|
|||
|
public class OrderSearchModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Идентификатор
|
|||
|
/// </summary>
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ФИО официанта
|
|||
|
/// </summary>
|
|||
|
public string? WaiterFullName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Тип заказа
|
|||
|
/// </summary>
|
|||
|
public string? Type { get; set; }
|
|||
|
}
|
|||
|
}
|