mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
15 lines
255 B
C#
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;
|
|
}
|
|
}
|
|
}
|