18 lines
499 B
C#
18 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
namespace BankContracts.SearchModels
|
|
{
|
|
public class OperationSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public int? EmployeeId { get; set; }
|
|
public string Model { get; set; } = string.Empty;
|
|
public string Mark { get; set; } = string.Empty;
|
|
public int Price { get; set; }
|
|
public List<int>? PurchasesIds { get; set; }
|
|
}
|
|
}
|