mirror of
https://github.com/MeowLynxSea/vissh.git
synced 2025-07-09 19:44:34 +00:00
11 lines
201 B
Dart
11 lines
201 B
Dart
class SSHCredentials {
|
|
final String host;
|
|
final String username;
|
|
final String password;
|
|
|
|
SSHCredentials({
|
|
required this.host,
|
|
required this.username,
|
|
required this.password,
|
|
});
|
|
} |