namespace BankDataModels.Models { public interface IProgramModel : IId { string ProgramName { get; } double InterestRate { get; } Dictionary ProgramCurrencies { get; } } }