CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/PaymeantSearchModel.cs
Илья Федотов 5d9c5122d4 1
2024-06-01 06:31:02 +04:00

17 lines
387 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? OrderID { get; set; }
public double? SumPay { get; set; }
public int? ClientID { get; set; }
}
}