17 lines
330 B
C#
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;
|
|
}
|
|
}
|
|
}
|