SUBD_Labs/BeauySalonContracts/SearchModels/ClientSearchModel.cs

10 lines
231 B
C#

namespace BeautySalonContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? PhoneNumber { get; set; }
}
}