SushiBarBase/SushiBar/SushiBarContracts/SearchModels/ProductSearchModel.cs

9 lines
182 B
C#
Raw Normal View History

namespace SushiBarContracts.SearchModels
{
public class ProductSearchModel
{
public int? Id { get; set; }
public string? ProductName { get; set; }
}
}