private void CopyMembers(LightMode other, Light light) { this.id = other.id; this.light = light; this.name = other.name; this.time = other.time; this.flash = other.flash; this.brightness = other.brightness; this.active = other.active; }
public LightMode(LightMode other, Light light) { CopyMembers(other, light); }