Files
dotnet-screenlogic/PentLightColor.cs
2019-02-22 09:06:53 -06:00

22 lines
453 B
C#

using System;
namespace ScreenLogicConnect
{
public class PentLightColor
{
public RgbColor color { get; private set; }
public string name { get; private set; }
public PentLightColor(string name, RgbColor color)
{
this.name = name;
this.color = color;
}
public override string ToString()
{
return $"Name: {name}, color: {color}";
}
}
}