10 lines
178 B
C#
Raw Permalink Normal View History

2023-03-08 21:37:50 +04:00

namespace ConfectioneryContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}