front dev update

This commit is contained in:
Stephan D
2026-01-30 16:54:56 +01:00
parent 51f5b0804a
commit 102c5d3668
31 changed files with 755 additions and 74 deletions

View File

@@ -0,0 +1,6 @@
class CursorPage<T> {
final List<T> items;
final String? nextCursor;
const CursorPage({required this.items, required this.nextCursor});
}