using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cowain.Base.ViewModels { public partial class UserRoleMenuViewModel : ObservableValidator { public int Id { get; set; } /// /// 角色id /// [ObservableProperty] private int _roleId; /// /// 菜单key /// [ObservableProperty] private string? _menuKey; /// /// 菜单名称 /// [ObservableProperty] private string? _menuName; /// /// 菜单命令 /// [ObservableProperty] private ObservableCollection? _menuActions; } }