20 lines
391 B
C#
20 lines
391 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RestaurantContracts.SearchModels
|
|
{
|
|
public class ClientSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
public string? FirstName { get; set; }
|
|
|
|
public string? LastName { get; set; }
|
|
|
|
public string? Number { get; set; }
|
|
}
|
|
}
|