PIAPS_CW/Contracts/SearchModels/SupplierSearchModel.cs

17 lines
399 B
C#

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; }
public List<ProductSearchModel>? AvailibleProducts { get; set; }
public int? Deals { get; set; }
}
}