treadl/mobile/lib/routeArguments.dart
2022-03-02 12:23:33 +00:00

7 lines
193 B
Dart

class ProjectScreenArguments {
final String projectId;
final String projectName;
final String projectPath;
ProjectScreenArguments(this.projectId, this.projectName, this.projectPath);
}