using System.Collections.ObjectModel; using CommunityToolkit.Mvvm.ComponentModel; using DMS.WPF.Services; namespace DMS.WPF.ViewModels.Dialogs; public partial class MqttSelectionDialogViewModel : ObservableObject { // [ObservableProperty] // private ObservableCollection mqtts; // // [ObservableProperty] // private Mqtt? selectedMqtt; // // public MqttSelectionDialogViewModel(DataServices dataServices) // { // Mqtts = new ObservableCollection(dataServices.Mqtts); // } }