Add timer for slider input
All checks were successful
Game Ideas build for PR / build_test (pull_request) Successful in 55s

This commit is contained in:
2025-04-29 21:38:39 +02:00
parent 926ea6dceb
commit ba2c065753
8 changed files with 53 additions and 32 deletions

View File

@@ -0,0 +1,7 @@
namespace GameIdeas.Shared.Dto;
public class MinMaxDto
{
public int? Min { get; set; }
public int? Max { get; set; }
}