mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
11 lines
224 B
Dart
11 lines
224 B
Dart
import 'package:dartssh2/dartssh2.dart';
|
|
import 'package:toolbox/data/model/sftp/absolute_path.dart';
|
|
|
|
class SftpBrowserStatus {
|
|
List<SftpName>? files;
|
|
AbsolutePath? path;
|
|
SftpClient? client;
|
|
|
|
SftpBrowserStatus();
|
|
}
|