17 lines
337 B
C#
17 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HTOLHAST
|
|
{
|
|
public class SwitchMatrix
|
|
{
|
|
public int Channel { get; set; }
|
|
public int SW1 { get; set; }
|
|
public int SW2 { get; set; }
|
|
public int SW3 { get; set; }
|
|
}
|
|
}
|