Files
jadb/lib/table_names/kanjivg.dart
h7x4 ffd12ed90a
All checks were successful
Build and test / build (push) Successful in 9m26s
WIP: add kanjivg data
2026-04-09 14:16:21 +09:00

10 lines
384 B
Dart

abstract class KanjiVGTableNames {
static const String version = 'KanjiVG_Version';
static const String entry = 'KanjiVG_Entry';
static const String path = 'KanjiVG_Path';
static const String strokeNumber = 'KanjiVG_StrokeNumber';
static const String pathGroup = 'KanjiVG_PathGroup';
static Set<String> get allTables => {version, entry, path, strokeNumber, pathGroup};
}