mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00
22 lines
448 B
Dart
22 lines
448 B
Dart
import 'note.dart';
|
|
import 'notes_folder_config.dart';
|
|
import 'notes_folder_notifier.dart';
|
|
|
|
export 'notes_folder_config.dart';
|
|
|
|
abstract class NotesFolder implements NotesFolderNotifier {
|
|
bool get isEmpty;
|
|
bool get hasNotes;
|
|
String get name;
|
|
String get publicName;
|
|
|
|
List<Note> get notes;
|
|
List<NotesFolder> get subFolders;
|
|
NotesFolder? get parent;
|
|
NotesFolder? get fsFolder;
|
|
|
|
NotesFolderConfig get config;
|
|
|
|
String pathSpec();
|
|
}
|