view MetroWpf/FxRates.Common/IFxRate.cs @ 25:81f9b72a44ce

Tidy up
author adminsh@apollo
date Tue, 20 Mar 2012 21:22:00 +0000
parents a8b50a087544
children
line wrap: on
line source

using System;

namespace FxRates.Common
{
    public interface IFxRate
    {
        decimal Bid { get; }
        Ccy Ccy { get; }
        decimal Offer { get; }
        decimal PreviousOffer { get; }
        DateTime Timestamp { get; }
    }
}