mirror of
https://github.com/ente-io/ente.git
synced 2025-05-30 22:33:15 +00:00
7 lines
110 B
Dart
7 lines
110 B
Dart
class PublicKey {
|
|
final String email;
|
|
final String publicKey;
|
|
|
|
PublicKey(this.email, this.publicKey);
|
|
}
|