view Stocks/Stocks.Common/Models/Quote.cs @ 1:bd448bb6e0ba

Added IWebClientShim and WebClientSlim to help mocking and unit tests. Removed obj files.
author stevenh7776 stevenhollidge@hotmail.com
date Mon, 20 Feb 2012 21:53:40 +0700
parents e5d46bb6cdb0
children
line wrap: on
line source


namespace Stocks.Common.Models
{
  public class Quote
  {
    public string Symbol { get; set; }
    public string Name { get; set; }
    public double LastTrade { get; set; }
  }
}