Files
WCS/Plugins/Driver/Cowain.Driver/ViewModels/AlarmGroupViewModel.cs
2026-03-02 09:08:20 +08:00

21 lines
438 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
namespace Plugin.Cowain.Driver.ViewModels;
public partial class AlarmGroupViewModel : ObservableObject
{
[ObservableProperty]
private int _id;
[ObservableProperty]
private string _name = string.Empty;
//[ObservableProperty]
//private bool _isSelected;
//public override string ToString()
//{
// return Name; // 这样默认会显示Name
//}
}