mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
9 lines
182 B
Dart
9 lines
182 B
Dart
import 'package:comunic/enums/report_target_type.dart';
|
|
|
|
class ReportTarget {
|
|
final ReportTargetType type;
|
|
final int targetId;
|
|
|
|
const ReportTarget(this.type, this.targetId);
|
|
}
|