Scott E. Graves 52f0d755ba
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good
refactor
2025-02-28 23:14:37 -06:00

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;
}