10 lines
233 B
C#

namespace BeautySalonContracts.SearchModels
{
public class MasterSearchModel
{
public int? Id { get; set; }
public string? MasterFIO { get; set; }
public string? Specilization { get; set; }
}
}