This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
KretaWeb/Models

View file

@ -0,0 +1,16 @@
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);
}
}