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; } } }