2023-04-02 16:52:24 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class CurrencyPurchaseSearchModel
|
|
|
|
|
{
|
|
|
|
|
public int? Id { get; set; }
|
2023-04-07 17:06:08 +04:00
|
|
|
|
public int? BankOperatorId { get; set; }
|
2023-04-02 16:52:24 +04:00
|
|
|
|
}
|
|
|
|
|
}
|