10 lines
226 B
C#
Raw Permalink Normal View History

2024-05-26 13:34:14 +04:00
namespace SewingDressesContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}