SUBD_Labs/BeauySalonContracts/SearchModels/ClientSearchModel.cs

10 lines
231 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
namespace BeautySalonContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? PhoneNumber { get; set; }
}
}