Coursework_ComputerStore_Li.../ComputerStoreContracts/SearchModels/ConsignmentSearchModel.cs

17 lines
383 B
C#
Raw Normal View History

2023-04-07 20:46:13 +04:00
using ComputerStoreDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.SearchModels
{
public class ConsignmentSearchModel
{
public int? ID { get; set; }
public int? OrderID { get; set; }
2023-04-07 20:46:13 +04:00
public int? ProductID { get; set; }
}
}