10 lines
181 B
C#
Raw Normal View History

namespace IceCreamShopContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}