mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
13 lines
285 B
Dart
13 lines
285 B
Dart
/// helper class for scene settings push route
|
|
class SceneSettingsRouteArguments {
|
|
final String sceneId;
|
|
final String sceneName;
|
|
final String sceneType;
|
|
|
|
SceneSettingsRouteArguments({
|
|
required this.sceneId,
|
|
required this.sceneName,
|
|
required this.sceneType,
|
|
});
|
|
}
|