flutter-app-tanken-05/lib/data/models/project_info.dart
2025-11-10 07:18:20 +01:00

13 lines
271 B
Dart

/// A data model for holding appwrite project information.
class ProjectInfo {
final String endpoint;
final String projectId;
final String projectName;
ProjectInfo({
required this.endpoint,
required this.projectId,
required this.projectName,
});
}