mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-06 15:21:21 +08:00
24 lines
460 B
Dart
24 lines
460 B
Dart
// @dart=2.9
|
|
|
|
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();
|
|
}
|