ente/mobile/lib/models/delete_account.dart

10 lines
199 B
Dart
Raw Normal View History

2022-07-08 08:50:19 +00:00
class DeleteChallengeResponse {
final bool allowDelete;
final String encryptedChallenge;
DeleteChallengeResponse({
required this.allowDelete,
required this.encryptedChallenge,
2022-07-08 08:50:19 +00:00
});
}