PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarContracts/SearchModels/ClientSearchModel.cs

14 lines
262 B
C#
Raw Normal View History

namespace SushiBar.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}