comparison MetroWpf/Stocks.Common/Events/PriceChangedEventArgs.cs @ 20:6109bc268b90

Latest
author adminsh@apollo
date Tue, 20 Mar 2012 13:37:46 +0000
parents
children
comparison
equal deleted inserted replaced
19:09d18d6e5f40 20:6109bc268b90
1 using System;
2 using Stocks.Common.Models;
3
4 namespace Stocks.Common.Events
5 {
6 public class PriceChangedEventArgs : EventArgs
7 {
8 public Price Price { get; set; }
9 }
10 }