Files
htolhast/HTOLHAST/PowerUpSequence.cs
2025-08-29 18:17:48 +02:00

20 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HTOLHAST
{
public class PowerUpSequence
{
public int Channel { get; set; }
public int Delay { get; set; }
public PowerUpSequence()
{
}
}
}