annotate Stocks/Stocks.Common/Models/WebRequestStats.cs @ 39:4b8b38d17d24
MetroWPF CTP v0.1
Quick tidy up for ctp 0.1 release
author |
adminsh@apollo |
date |
Tue, 03 Apr 2012 15:33:18 +0100 |
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 }
|