Files
WowUp/WowUp.WPF/Models/Events/IpcEventArgs.cs
jliddev 193f9cd42d IPC channel to restore window.
On multi-instance launch, restore window via IPC channel.
2020-08-23 09:27:29 -05:00

15 lines
255 B
C#

using WowUp.WPF.Enums;
namespace WowUp.WPF.Models.Events
{
public class IpcEventArgs
{
public IpcCommand Command { get; set; }
public IpcEventArgs(IpcCommand command)
{
Command = command;
}
}
}