Files
DMS/DMS.WPF/ViewModels/Dialogs/MqttSelectionDialogViewModel.cs

22 lines
536 B
C#
Raw Normal View History

2025-07-05 18:15:21 +08:00
using System.Collections.ObjectModel;
using CommunityToolkit.Mvvm.ComponentModel;
2025-07-19 11:11:01 +08:00
using DMS.WPF.Services;
2025-07-05 18:15:21 +08:00
2025-07-19 11:11:01 +08:00
namespace DMS.WPF.ViewModels.Dialogs;
2025-07-05 18:15:21 +08:00
public partial class MqttSelectionDialogViewModel : ObservableObject
{
2025-07-26 10:05:43 +08:00
// [ObservableProperty]
// private ObservableCollection<Mqtt> mqtts;
//
// [ObservableProperty]
// private Mqtt? selectedMqtt;
//
2025-08-24 14:42:31 +08:00
// public MqttSelectionDialogViewModel(DataServices _dataServices)
2025-07-26 10:05:43 +08:00
// {
2025-08-24 14:42:31 +08:00
// Mqtts = new ObservableCollection<Mqtt>(_dataServices.Mqtts);
2025-07-26 10:05:43 +08:00
// }
2025-07-05 18:15:21 +08:00
2025-07-05 18:15:21 +08:00
}