Frontend first draft

This commit is contained in:
Arseni
2025-11-13 15:06:15 +03:00
parent e47f343afb
commit ddb54ddfdc
504 changed files with 25498 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
import 'package:json_annotation/json_annotation.dart';
part 'change_role.g.dart';
@JsonSerializable(explicitToJson: true)
class ChangeRole {
final String accountRef;
final String newRoleDescriptionRef;
const ChangeRole({
required this.accountRef,
required this.newRoleDescriptionRef,
});
factory ChangeRole.fromJson(Map<String, dynamic> json) => _$ChangeRoleFromJson(json);
Map<String, dynamic> toJson() => _$ChangeRoleToJson(this);
}