ente/mobile/lib/models/delete_account.dart
2024-03-01 12:25:37 +05:30

10 lines
199 B
Dart

class DeleteChallengeResponse {
final bool allowDelete;
final String encryptedChallenge;
DeleteChallengeResponse({
required this.allowDelete,
required this.encryptedChallenge,
});
}