6040-003分支:增加WCS模块

This commit is contained in:
zhusenlin
2026-03-02 09:13:29 +08:00
parent 1fb681fb34
commit b83624f0c3
127 changed files with 13277 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using CommunityToolkit.Mvvm.ComponentModel;
using Plugin.Cowain.Wcs.Models.Enum;
using System.Collections.ObjectModel;
namespace Plugin.Cowain.Wcs.ViewModels;
public partial class ProcessActionViewModel : ObservableObject
{
[ObservableProperty]
private string _action = RgvCommandEnum.UnKnown.ToString();
}