17 lines
388 B
C#
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 PaySearchModel
|
|||
|
{
|
|||
|
public int? ID { get; set; }
|
|||
|
public int? ClientID { get; set; }
|
|||
|
public double? SummaPay { get; set; }
|
|||
|
public DateTime DatePay { get; set; }
|
|||
|
}
|
|||
|
}
|