ente/lib/models/delete_account.dart

14 lines
248 B
Dart

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