12 lines
247 B
Plaintext
12 lines
247 B
Plaintext
|
|
using Prism.Events;
|
||
|
|
|
||
|
|
namespace DTS.Common.Events.TSRAIRGo
|
||
|
|
{
|
||
|
|
public class IpAddressToPingEvent : PubSubEvent<IpAddressToPingArg> { }
|
||
|
|
|
||
|
|
public class IpAddressToPingArg
|
||
|
|
{
|
||
|
|
public string IpAddress { get; set; }
|
||
|
|
}
|
||
|
|
}
|