namespace SteamWare.DataType
{
///
///
///
public class DatoBarPlot
{
///
/// Initializes a new instance of the class.
///
/// The _label.
/// The _valore.
/// The _CSS.
/// The _tooltip.
public DatoBarPlot(string _label, int _valore, string _css, string _tooltip)
{
label = _label;
valore = _valore;
css = _css;
tooltip = _tooltip;
}
///
/// Gets or sets the label.
///
///
/// The label.
///
public string label { get; set; }
///
/// Gets or sets the valore.
///
///
/// The valore.
///
public int valore { get; set; }
///
/// Gets or sets the CSS.
///
///
/// The CSS.
///
public string css { get; set; }
///
/// Gets or sets the tooltip.
///
///
/// The tooltip.
///
public string tooltip { get; set; }
}
}