2023-04-01 21:50:53 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface ICurrencyModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
2023-04-07 17:06:08 +04:00
|
|
|
|
int BankOperatorId { get; }
|
2023-04-01 21:50:53 +04:00
|
|
|
|
}
|
|
|
|
|
}
|