using DataVM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media; namespace JobModule.Pops.JobNormal; internal partial class ProcessPopViewModel : ObservableObject, IPopAware { public ImageSource? ImageSource { get; set; } public string? Title { get; set; } = "Charge->Process->Discharge"; public Action? RequestClose { get; set; } public bool CanClose() { return true; } public void OnClose() { } public void OnPop(object? state) { } }