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 ICreditProgramModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Name { get;}
|
2023-04-06 18:41:33 +04:00
|
|
|
|
float Persent { get;}
|
2023-04-01 21:50:53 +04:00
|
|
|
|
Dictionary<int, ICurrencyModel> Currencies { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|