/Main/src/Xbap/DynamicDataDisplay.Xbap.Samples/Demos/v02/CurrencyExchange/CurrencyInfo.cs
C# | 24 lines | 12 code | 1 blank | 11 comment | 0 complexity | b9dc732d0d05b8acf1b5c37d4ffbcc98 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5 6namespace Microsoft.Research.DynamicDataDisplay.Samples.Demos.v02.CurrencyExchange 7{ 8 /// <summary> 9 /// This is a auxiliary class to hold currencies exchange rate for one date 10 /// </summary> 11 public struct CurrencyInfo 12 { 13 /// <summary> 14 /// Gets or sets the date for which currency exchange rate is given. 15 /// </summary> 16 /// <value>The date.</value> 17 public DateTime Date { get; set; } 18 /// <summary> 19 /// Gets or sets the currency exchange rate. 20 /// </summary> 21 /// <value>The rate.</value> 22 public double Rate { get; set; } 23 } 24}