2024-06-16 15:06:30 +04:00

14 lines
276 B
C#

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