21 lines
433 B
C#
21 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwCoreLib.Razor.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;
|
|
}
|
|
}
|
|
}
|