view Stocks/Stocks.Common/Models/WebRequestStats.cs @ 121:8f94475d3146 tip

final code
author stevenh7776
date Thu, 31 May 2012 15:35:26 +0100
parents e5d46bb6cdb0
children
line wrap: on
line source

namespace Stocks.Common.Models
{
  public class WebRequestStats
  {
    public int Duration { get; set; }
    public int PricesDownloaded { get; set; }
    public string Response { get; set; }
    public string Request { get; set; }
    public int SymbolCount { get; set; }
  }
}