Files
DP44/Common/DTS.Common/.svn/pristine/38/38d1f449f80e11123f798b309793a8d9fefacc46.svn-base

12 lines
238 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Prism.Events;
namespace DTS.Common.Events.TSRAIRGo
{
public class ClearIpAddressEvent : PubSubEvent<ClearIpAddressArg> { }
public class ClearIpAddressArg
{
public bool Clear { get; set; }
}
}