mirror of
https://github.com/ente-io/ente.git
synced 2025-06-26 03:40:35 +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);
|
|
}
|