mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 05:05:05 +00:00
Correcting namespaces
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class BoolEventArgs : GenericEventArgs<bool>
|
public sealed class BoolEventArgs : GenericEventArgs<bool>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public sealed class CharEventArgs : GenericEventArgs<char>
|
public sealed class CharEventArgs : GenericEventArgs<char>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class DateTimeEventArgs : GenericEventArgs<DateTime>
|
public sealed class DateTimeEventArgs : GenericEventArgs<DateTime>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class FloatEventArgs : GenericEventArgs<float>
|
public sealed class FloatEventArgs : GenericEventArgs<float>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public abstract class GenericEventArgs<T> : EventArgs
|
public abstract class GenericEventArgs<T> : EventArgs
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class IntEventArgs : GenericEventArgs<int>
|
public sealed class IntEventArgs : GenericEventArgs<int>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class StringEventArgs : GenericEventArgs<string>
|
public sealed class StringEventArgs : GenericEventArgs<string>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using ICD.Common.Utils;
|
using ICD.Common.Utils;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class TcpReceiveEventArgs : EventArgs
|
public sealed class TcpReceiveEventArgs : EventArgs
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
public sealed class UShortEventArgs : GenericEventArgs<ushort>
|
public sealed class UShortEventArgs : GenericEventArgs<ushort>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
|
|
||||||
namespace ICD.Common.EventArguments
|
namespace ICD.Common.Utils.EventArguments
|
||||||
{
|
{
|
||||||
public sealed class XmlRecursionEventArgs : EventArgs
|
public sealed class XmlRecursionEventArgs : EventArgs
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using ICD.Common.EventArguments;
|
using ICD.Common.Utils.EventArguments;
|
||||||
|
|
||||||
namespace ICD.Common.Services.Logging
|
namespace ICD.Common.Services.Logging
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using ICD.Common.EventArguments;
|
using ICD.Common.Utils.EventArguments;
|
||||||
|
|
||||||
namespace ICD.Common.Services.Logging
|
namespace ICD.Common.Services.Logging
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
using ICD.Common.EventArguments;
|
using ICD.Common.Utils.EventArguments;
|
||||||
using ICD.Common.Utils.Extensions;
|
using ICD.Common.Utils.Extensions;
|
||||||
|
|
||||||
namespace ICD.Common.Utils.Timers
|
namespace ICD.Common.Utils.Timers
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using ICD.Common.EventArguments;
|
using ICD.Common.Utils.EventArguments;
|
||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
#if SIMPLSHARP
|
#if SIMPLSHARP
|
||||||
using Crestron.SimplSharp.CrestronXml;
|
using Crestron.SimplSharp.CrestronXml;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using ICD.Common.EventArguments;
|
using ICD.Common.Utils.EventArguments;
|
||||||
using ICD.Common.Properties;
|
using ICD.Common.Properties;
|
||||||
using ICD.Common.Utils.Extensions;
|
using ICD.Common.Utils.Extensions;
|
||||||
using ICD.Common.Utils.IO;
|
using ICD.Common.Utils.IO;
|
||||||
|
|||||||
Reference in New Issue
Block a user