ente/lib/models/delete_account.dart
2022-07-08 14:20:19 +05:30

12 lines
234 B
Dart

import 'package:flutter/foundation.dart';
class DeleteChallengeResponse {
final bool allowDelete;
final String encryptedChallenge;
DeleteChallengeResponse({
@required this.allowDelete,
this.encryptedChallenge,
});
}