namespace Comal.Classes { public interface IForeignCurrency { string Code { get; set; } string Description { get; set; } string Identifier { get; set; } double ExchangeRate { get; set; } bool Active { get; set; } } }