20 lines
323 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|