let AI comment everything because well... yeah...

This commit is contained in:
Nico
2025-06-06 21:00:32 +02:00
parent 9c84d0c375
commit cc110ac104
44 changed files with 1230 additions and 646 deletions

View File

@@ -1,4 +1,8 @@
// * 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,
excursion,
place, // Camera trap locations database
excursion, // Excursions and tracking database
}