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