PIAPS_CW/Contracts/SearchModels/ProductSearchModel.cs

19 lines
413 B
C#
Raw Normal View History

2024-06-11 12:18:10 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class ProductSearchModel
{
public Guid? Id { get; set; }
public string? Name { get; set; }
public double? Price { get; set; }
public double? Rate { get; set; }
public int? Amount { get; set; }
public bool? IsBeingSold { get; set; }
2024-06-11 12:18:10 +04:00
}
}