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