1234567891011121314151617181920212223242526272829303132 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using CommunityToolkit.Mvvm.Input;
- using Device;
- using GlobalData;
- namespace ConfigFileManager.ViewModels;
- public partial class ConfigFileManagerViewModel : ObservableObject
- {
- public ConfigFileManagerViewModel(DeviceCollection deviceCollection)
- {
- this.DeviceCollection = deviceCollection;
- }
- [ObservableProperty]
- private DeviceCollection _DeviceCollection;
- [RelayCommand]
- private void Migrate(DeviceInfo deviceInfo)
- {
- }
- [RelayCommand]
- private void Update(DeviceInfo deviceInfo)
- {
- }
- }
|