9 lines
185 B
C#
9 lines
185 B
C#
namespace BeautySalonContracts.SearchModels
|
|
{
|
|
public class ServiceSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? ServiceName { get; set; }
|
|
}
|
|
}
|