2023-04-01 22:37:52 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.SearchModels
|
|
|
|
|
{
|
2023-04-02 16:52:24 +04:00
|
|
|
|
public class CurrencySearchModel
|
2023-04-01 22:37:52 +04:00
|
|
|
|
{
|
2023-04-02 16:52:24 +04:00
|
|
|
|
public int? Id { get; set; }
|
2023-04-01 22:37:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|