Mercurial > silverbladetech
view Stocks/Stocks.Common/Models/Quote.cs @ 41:dbd242eb9c33
Initial wave of TDD development
author | adminsh@apollo |
---|---|
date | Tue, 03 Apr 2012 23:29:32 +0100 |
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; } } }