ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/ClientSearchModel.cs
2023-03-04 17:33:38 +04:00

18 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}