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 segment; SegmentType category; ActionType actionType; }