ente/auth/lib/models/delete_account.dart

10 lines
199 B
Dart
Raw Normal View History

2022-11-01 06:13:06 +00:00
class DeleteChallengeResponse {
final bool allowDelete;
final String encryptedChallenge;
DeleteChallengeResponse({
required this.allowDelete,
required this.encryptedChallenge,
});
}