SushiBarBase/SushiBar/SushiBarContracts/SearchModels/ClientSearchModel.cs

11 lines
268 B
C#
Raw Permalink Normal View History

namespace SushiBarContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
2024-05-04 21:53:45 +04:00
public string? Password { get; set; }
}
}