PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarContracts/SearchModels/SupplySearchModel.cs

15 lines
294 B
C#
Raw Normal View History

2024-03-26 23:20:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.SearchModels
{
public class SupplySearchModel
{
public int? SushiId { get; set; }
public int? Count { get; set; }
}
}