12 lines
238 B
C#
12 lines
238 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.Events.TSRAIRGo
|
|
{
|
|
public class ClearIpAddressEvent : PubSubEvent<ClearIpAddressArg> { }
|
|
|
|
public class ClearIpAddressArg
|
|
{
|
|
public bool Clear { get; set; }
|
|
}
|
|
}
|