Renamed project to ICD.Common.Utils

This commit is contained in:
jeff.thompson
2017-06-23 14:50:34 -04:00
parent 78eea65fc7
commit 2824f05180
93 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
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
}
}