15 lines
323 B
C#
15 lines
323 B
C#
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();
|
|
|
|
|
|
}
|