Files
mapo-core/MP.SPEC/Data/DoughnutStyling.cs
T
zaccaria.majid 094ce0d181 fix style plot
2022-10-18 11:10:39 +02:00

17 lines
330 B
C#

using System.Drawing;
namespace MP.SPEC.Data
{
public class DoughnutStyling
{
public string color { get; set; }
public string border { get; set; }
public DoughnutStyling(string color, string border)
{
this.color = color;
this.border = border;
}
}
}