mirror of
https://github.com/ente-io/ente.git
synced 2025-06-02 15:29:53 +00:00
10 lines
199 B
Dart
10 lines
199 B
Dart
class DeleteChallengeResponse {
|
|
final bool allowDelete;
|
|
final String encryptedChallenge;
|
|
|
|
DeleteChallengeResponse({
|
|
required this.allowDelete,
|
|
required this.encryptedChallenge,
|
|
});
|
|
}
|