mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-01-31 19:12:36 +01:00
36 lines
671 B
TypeScript
36 lines
671 B
TypeScript
export class RoomSessionDimmerPresetsEventPresetItem
|
|
{
|
|
private _id: number;
|
|
private _type: number;
|
|
private _color: number;
|
|
private _brightness: number;
|
|
|
|
constructor(id: number, type: number, color: number, brightness: number)
|
|
{
|
|
this._id = id;
|
|
this._type = type;
|
|
this._color = color;
|
|
this._brightness = brightness;
|
|
}
|
|
|
|
public get id(): number
|
|
{
|
|
return this._id;
|
|
}
|
|
|
|
public get type(): number
|
|
{
|
|
return this._type;
|
|
}
|
|
|
|
public get color(): number
|
|
{
|
|
return this._color;
|
|
}
|
|
|
|
public get brightness(): number
|
|
{
|
|
return this._brightness;
|
|
}
|
|
}
|