Files
mapo-core/MP.INVE/Data/DoughnutStyling.cs
2022-11-10 17:36:31 +01:00

17 lines
330 B
C#

using System.Drawing;
namespace MP.INVE.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;
}
}
}