view Stocks/Stocks.Common/EventArgs/PriceChangedEventArgs.cs @ 11:db71b2e0a216

Extension added (fails on Windows XP)
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:30:16 +0700
parents 6e84a4c92378
children
line wrap: on
line source

using Stocks.Common.Models;

namespace Stocks.Common.Events
{
  public class PriceChangedEventArgs
  {
    public Price Price { get; set; }
  }
}