52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
namespace SteamWare.DataType
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class DatoBarPlot
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="DatoBarPlot"/> class.
|
|
/// </summary>
|
|
/// <param name="_label">The _label.</param>
|
|
/// <param name="_valore">The _valore.</param>
|
|
/// <param name="_css">The _CSS.</param>
|
|
/// <param name="_tooltip">The _tooltip.</param>
|
|
public DatoBarPlot(string _label, int _valore, string _css, string _tooltip)
|
|
{
|
|
label = _label;
|
|
valore = _valore;
|
|
css = _css;
|
|
tooltip = _tooltip;
|
|
}
|
|
/// <summary>
|
|
/// Gets or sets the label.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The label.
|
|
/// </value>
|
|
public string label { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the valore.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The valore.
|
|
/// </value>
|
|
public int valore { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the CSS.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The CSS.
|
|
/// </value>
|
|
public string css { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the tooltip.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The tooltip.
|
|
/// </value>
|
|
public string tooltip { get; set; }
|
|
}
|
|
}
|