feat: pgc skip

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-10-08 21:22:02 +08:00
parent 06d8296939
commit ca0eb1716f
13 changed files with 232 additions and 94 deletions

View File

@@ -10,11 +10,10 @@ class SegmentModel {
required this.segmentType,
required this.segment,
required this.skipType,
this.hasSkipped = false,
});
String UUID;
SegmentType segmentType;
Pair<int, int> segment;
SkipType skipType;
bool hasSkipped;
late bool hasSkipped = false;
}