CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/PaymeantSearchModel.cs
Илья Федотов e07a12bf92 set paymeant
2024-05-26 18:12:25 +04:00

17 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels
{
public class PaymeantSearchModel
{
public int? ID { get; set; }
public int? ProductID { get; set; }
public int? OrderID { get; set; }
public double? SumPay { get; set; }
}
}