annotate Stocks/Stocks.Common/Models/WebRequestStats.cs @ 17:7721a1270363
New files added during dev
author |
stevenh7776 stevenhollidge@hotmail.com |
date |
Wed, 14 Mar 2012 01:23:57 +0700 |
parents |
e5d46bb6cdb0 |
children |
|
rev |
line source |
0
|
1 namespace Stocks.Common.Models
|
|
2 {
|
|
3 public class WebRequestStats
|
|
4 {
|
|
5 public int Duration { get; set; }
|
|
6 public int PricesDownloaded { get; set; }
|
|
7 public string Response { get; set; }
|
|
8 public string Request { get; set; }
|
|
9 public int SymbolCount { get; set; }
|
|
10 }
|
|
11 }
|