2025-07-04 22:39:44 +08:00
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
using CommunityToolkit.Mvvm.Input;
|
|
|
|
|
|
2025-07-19 11:11:01 +08:00
|
|
|
namespace DMS.WPF.ViewModels.Dialogs;
|
2025-07-04 22:39:44 +08:00
|
|
|
|
|
|
|
|
public partial class MqttDialogViewModel : ObservableObject
|
|
|
|
|
{
|
2025-07-26 10:05:43 +08:00
|
|
|
// [ObservableProperty]
|
|
|
|
|
// private Mqtt _mqtt;
|
|
|
|
|
//
|
|
|
|
|
// [ObservableProperty] private string title ;
|
|
|
|
|
// [ObservableProperty] private string primaryButContent ;
|
|
|
|
|
//
|
|
|
|
|
// public MqttDialogViewModel(Mqtt mqtt)
|
|
|
|
|
// {
|
|
|
|
|
// _mqtt = mqtt;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// [RelayCommand]
|
|
|
|
|
// public void AddMqtt()
|
|
|
|
|
// {
|
|
|
|
|
//
|
|
|
|
|
// }
|
2025-07-04 22:39:44 +08:00
|
|
|
}
|