7 lines
193 B
Dart
7 lines
193 B
Dart
class ProjectScreenArguments {
|
|
final String projectId;
|
|
final String projectName;
|
|
final String projectPath;
|
|
ProjectScreenArguments(this.projectId, this.projectName, this.projectPath);
|
|
}
|