forked from lxm_flutter/FlutterUnit
20 lines
420 B
Dart
20 lines
420 B
Dart
|
|
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:flutter_unit/model/github/issue.dart';
|
|
|
|
/// create by 张风捷特烈 on 2020/9/3
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
|
|
abstract class PointCommentEvent extends Equatable {}
|
|
|
|
class EventLoadPointComment extends PointCommentEvent {
|
|
final Issue point;
|
|
|
|
EventLoadPointComment(this.point);
|
|
|
|
@override
|
|
List<Object> get props => [point];
|
|
}
|