9 lines
295 B
Dart
9 lines
295 B
Dart
// * Enum defining the types of databases used in the app
|
|
// * - place: Database for camera trap locations
|
|
// * - excursion: Database for tracking excursions and their data
|
|
|
|
enum DatabasesEnum {
|
|
place, // Camera trap locations database
|
|
excursion, // Excursions and tracking database
|
|
}
|