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,20 @@
import 'package:json_annotation/json_annotation.dart';
part 'role.g.dart';
@JsonSerializable()
class RoleDTO {
final String accountRef;
final String organizationRef;
final String descriptionRef;
const RoleDTO({
required this.accountRef,
required this.descriptionRef,
required this.organizationRef,
});
factory RoleDTO.fromJson(Map<String, dynamic> json) => _$RoleDTOFromJson(json);
Map<String, dynamic> toJson() => _$RoleDTOToJson(this);
}