SUBD_Labs/BeauySalonContracts/SearchModels/ServiceSearchModel.cs

9 lines
185 B
C#
Raw Normal View History

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