Files
PiliPlus/lib/models/common/sponsor_block/post_segment_model.dart
bggRGjQaUbCoE aa378d924b opt: post segments
Closes #531

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-03-26 12:10:55 +08:00

15 lines
418 B
Dart

import 'package:PiliPlus/common/widgets/pair.dart';
import 'package:PiliPlus/models/common/sponsor_block/action_type.dart';
import 'package:PiliPlus/models/common/sponsor_block/segment_type.dart';
class PostSegmentModel {
PostSegmentModel({
required this.segment,
required this.category,
required this.actionType,
});
Pair<double, double> segment;
SegmentType category;
ActionType actionType;
}