9 lines
165 B
C#
Raw Normal View History

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