Files
lightController/src/models/Scene.ts
Adrian Zürcher 3e2b95c1c3 update dbmData and Subscription so it is reactive
new save load scenes
2025-06-19 19:30:28 +02:00

10 lines
170 B
TypeScript

import type { Value } from './Value';
export interface Scene {
name: string;
description?: string;
movingHead: boolean;
lightBar: boolean;
values?: Value[];
}