kreta/KretaWeb/Models/StepDisplayModel.cs
2024-03-13 00:33:46 +01:00

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