21 lines
438 B
C#
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
|
|
//}
|
|
}
|