comparison MetroWpf/FxRates.Common/IFxRate.cs @ 24:a8b50a087544

Stocks and FxRates working, new menu introduced. Working nicely so far
author adminsh@apollo
date Tue, 20 Mar 2012 20:18:35 +0000
parents
children
comparison
equal deleted inserted replaced
23:399398841fd0 24:a8b50a087544
1 using System;
2
3 namespace FxRates.Common
4 {
5 public interface IFxRate
6 {
7 decimal Bid { get; }
8 Ccy Ccy { get; }
9 decimal Offer { get; }
10 decimal PreviousOffer { get; }
11 DateTime Timestamp { get; }
12 }
13 }