1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00
comunicmobile/lib/models/report_target.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);
}