using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Visuals
{
///
/// Represents a double value changed event argument.
///
///
public class DoubleValueChangedEventArgs : EventArgs
{
///
/// Gets or sets the new value.
///
public double Value { get; set; }
///
/// Initializes a new instance of the class.
///
public DoubleValueChangedEventArgs()
{
}
///
/// Initializes a new instance of the class.
///
/// The value.
public DoubleValueChangedEventArgs(double value)
: this()
{
Value = value;
}
}
}