12 lines
277 B
C#
12 lines
277 B
C#
namespace RodionovLibrary.NonVisualComponents.HelperModels
|
|
{
|
|
public class SeriesParameters
|
|
{
|
|
public string SeriesName { get; set; } = string.Empty;
|
|
|
|
public List<double> ValuesY { get; set; } = new();
|
|
|
|
public Color Color { get; set; }
|
|
}
|
|
}
|