1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00
comunicmobile/lib/models/report_target.dart

9 lines
170 B
Dart
Raw Permalink Normal View History

2022-03-18 16:54:19 +00:00
import 'package:comunic/enums/report_target_type.dart';
class ReportTarget {
final ReportTargetType type;
2022-03-18 17:29:25 +00:00
final int id;
2022-03-18 16:54:19 +00:00
2022-03-18 17:29:25 +00:00
const ReportTarget(this.type, this.id);
2022-03-18 16:54:19 +00:00
}