mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
15 lines
418 B
Dart
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;
|
|
}
|