mirror of
https://github.com/cyberbread-ru/notepad.git
synced 2026-07-14 12:51:01 +03:00
initial vibecoded release
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import '../models/note.dart';
|
||||
|
||||
abstract class NoteRepository {
|
||||
Future<List<Note>> getAll();
|
||||
Future<Note?> getById(String id);
|
||||
Future<Note> save(Note note);
|
||||
Future<void> delete(String id);
|
||||
}
|
||||
Reference in New Issue
Block a user