16 lines
493 B
C#
16 lines
493 B
C#
using System.Drawing;
|
|
|
|
namespace Kreta.Web.Models
|
|
{
|
|
public class StepDisplayModel
|
|
{
|
|
public int Steps { get; set; }
|
|
public int Active { get; set; }
|
|
public string Height { get; set; } = "50px";
|
|
public string Width { get; set; } = "100%";
|
|
public int Radius { get; set; } = 20;
|
|
public string SelectedColor { get; set; }
|
|
public string BaseColor { get; set; }
|
|
public Font Font { get; set; } = new Font("Arial", 16);
|
|
}
|
|
}
|