mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
11 lines
191 B
Dart
11 lines
191 B
Dart
abstract class ProfileTransport {
|
|
String get label;
|
|
}
|
|
|
|
class FileProfileTransport implements ProfileTransport {
|
|
const FileProfileTransport();
|
|
|
|
@override
|
|
String get label => 'File';
|
|
}
|