1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-20 00:35:17 +00:00

Managed to send reports

This commit is contained in:
2022-03-18 18:29:25 +01:00
parent 80a1c4e0c4
commit ec16984b8a
3 changed files with 122 additions and 25 deletions

View File

@ -2,7 +2,7 @@ import 'package:comunic/enums/report_target_type.dart';
class ReportTarget {
final ReportTargetType type;
final int targetId;
final int id;
const ReportTarget(this.type, this.targetId);
const ReportTarget(this.type, this.id);
}