17 lines
391 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlumbingRepairContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
2024-05-06 22:09:06 +04:00
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}