PIAPS_CW/Contracts/SearchModels/SupplierSearchModel.cs

17 lines
401 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class SupplierSearchModel
{
public Guid? Id { get; set; }
public string? Name { get; set; }
2024-06-22 15:10:46 +04:00
//public List<ProductSearchModel>? AvailibleProducts { get; set; }
public int? Deals { get; set; }
}
}