IForeignCurrency.cs 277 B

123456789101112
  1. namespace Comal.Classes
  2. {
  3. public interface IForeignCurrency
  4. {
  5. string Code { get; set; }
  6. string Description { get; set; }
  7. string Identifier { get; set; }
  8. double ExchangeRate { get; set; }
  9. bool Active { get; set; }
  10. }
  11. }