9 lines
156 B
C#
9 lines
156 B
C#
|
namespace ConfectioneryContracts.SearchModels
|
|||
|
{
|
|||
|
public class ShopSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? Name { get; set; }
|
|||
|
}
|
|||
|
}
|