Optimizations, modernizations, cleanup

This commit is contained in:
2019-02-22 11:04:41 -06:00
parent ffb891b04b
commit 4ecdacedab
13 changed files with 121 additions and 111 deletions

View File

@ -7,10 +7,10 @@ namespace ScreenLogicConnect
public RgbColor color { get; private set; }
public string name { get; private set; }
public PentLightColor(string name, RgbColor color)
public PentLightColor(string inName, RgbColor inColor)
{
this.name = name;
this.color = color;
name = inName;
color = inColor;
}
public override string ToString()