11 lines
354 B
C#
11 lines
354 B
C#
namespace RobotNet.WebApp.Charts.Models.Common.Dataset;
|
|
|
|
public class ChartDatasetData(string? datasetLabel, object data, string? backgroundColor) : IChartDatasetData
|
|
{
|
|
public string? DatasetLabel { get; init; } = datasetLabel;
|
|
|
|
public object Data { get; init; } = data;
|
|
|
|
public string? BackgroundColor { get; init; } = backgroundColor;
|
|
}
|