mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-08 17:24:49 +00:00
30 lines
528 B
C#
30 lines
528 B
C#
using System;
|
|
using ICD.Common.Properties;
|
|
|
|
namespace ICD.Common.EventArguments
|
|
{
|
|
public sealed class XmlRecursionEventArgs : EventArgs
|
|
{
|
|
[PublicAPI]
|
|
public string Outer { get; private set; }
|
|
|
|
[PublicAPI]
|
|
public string[] Path { get; private set; }
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="outer"></param>
|
|
/// <param name="path"></param>
|
|
public XmlRecursionEventArgs(string outer, string[] path)
|
|
{
|
|
Outer = outer;
|
|
Path = path;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|