2023-04-02 14:33:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class DealSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2023-04-07 13:15:01 +04:00
|
|
|
|
public int? OperatorId { get; set; }
|
2023-04-02 14:33:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|