ente/lib/models/delete_account.dart

12 lines
234 B
Dart
Raw Normal View History

2022-07-08 08:50:19 +00:00
import 'package:flutter/foundation.dart';
class DeleteChallengeResponse {
final bool allowDelete;
final String encryptedChallenge;
DeleteChallengeResponse({
@required this.allowDelete,
this.encryptedChallenge,
});
}