PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryContracts/SearchModels/SupplySearchModel.cs

15 lines
281 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryContracts.SearchModels
{
public class SupplySearchModel
{
public int? TextileId { get; set; }
public int? Count { get; set; }
}
}