CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/PaySearchModel.cs

17 lines
388 B
C#
Raw Normal View History

2024-05-19 18:43:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels
{
public class PaySearchModel
{
public int? ID { get; set; }
public int? ClientID { get; set; }
public double? SummaPay { get; set; }
public DateTime DatePay { get; set; }
}
}