unified code verification service

This commit is contained in:
Stephan D
2026-02-10 01:55:33 +01:00
parent 76c3bfdea9
commit 7f540671c1
120 changed files with 1863 additions and 1394 deletions

View File

@@ -4,15 +4,15 @@ part 'session_identifier.g.dart';
@JsonSerializable()
class SessionIdentifierDto {
class SessionIdentifierDTO {
final String clientId;
final String deviceId;
const SessionIdentifierDto({
const SessionIdentifierDTO({
required this.clientId,
required this.deviceId,
});
factory SessionIdentifierDto.fromJson(Map<String, dynamic> json) => _$SessionIdentifierDtoFromJson(json);
Map<String, dynamic> toJson() => _$SessionIdentifierDtoToJson(this);
factory SessionIdentifierDTO.fromJson(Map<String, dynamic> json) => _$SessionIdentifierDTOFromJson(json);
Map<String, dynamic> toJson() => _$SessionIdentifierDTOToJson(this);
}