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