Created S# .sln and moved project to src folder

This commit is contained in:
jeff.thompson
2017-06-21 22:41:54 -04:00
commit 52948a6e7e
93 changed files with 10647 additions and 0 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
}
}