13 lines
271 B
Dart
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,
|
|
});
|
|
}
|