using System;
|
namespace Shared
|
{
|
[System.Serializable]
|
public class LightMixDimming : LightDimming
|
{
|
public LightMixDimming ()
|
{
|
this.Type = DeviceType.LightMixDimming;
|
DeviceTextID = SimpleControl.R.MyInternationalizationString.Lights;
|
|
}
|
|
public byte PhysicsLoopID;
|
|
public override string CommonLoopID {
|
get {
|
return SubnetID.ToString () + "_" + DeviceID.ToString () + "_" + PhysicsLoopID.ToString ();
|
}
|
}
|
|
}
|
}
|