Add slider to form

This commit is contained in:
2025-04-13 14:28:44 +02:00
parent b8eed9b0d7
commit 0fb5f8d682
18 changed files with 179 additions and 34 deletions

View File

@@ -0,0 +1,8 @@
namespace GameIdeas.BlazorApp.Shared.Components.Slider;
public class SliderParams
{
public int Min{ get; set; }
public int Max { get; set; }
public int Gap { get; set; } = 0;
}