|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
|
|
namespace RGBController2.Boards
|
|
{
|
|
public class ChromaDeviceBoarde : IBoard
|
|
{
|
|
private bool _connected;
|
|
public bool Connected
|
|
{
|
|
get { return _connected; }
|
|
}
|
|
|
|
ChromaDeviceBoarde()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|