All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
11 lines
270 B
Dart
11 lines
270 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:repertory/types/mount_config.dart';
|
|
|
|
class Mount with ChangeNotifier {
|
|
final MountConfig mountConfig;
|
|
Mount(this.mountConfig);
|
|
|
|
String get name => mountConfig.name;
|
|
String get type => mountConfig.type;
|
|
}
|