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