10 lines
232 B
C#
10 lines
232 B
C#
namespace BankDataModels.Models
|
|
{
|
|
public interface IProgramModel : IId
|
|
{
|
|
string ProgramName { get; }
|
|
double InterestRate { get; }
|
|
Dictionary<int, ICurrencyModel> ProgramCurrencies { get; }
|
|
}
|
|
}
|