mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +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>
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using ICD.Common.Properties;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
[PublicAPI]
|
||||
public sealed class CharEventArgs : GenericEventArgs<char>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
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>
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
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>
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
public sealed class StringEventArgs : GenericEventArgs<string>
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using ICD.Common.Utils;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
public sealed class TcpReceiveEventArgs : EventArgs
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using ICD.Common.Properties;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
[PublicAPI]
|
||||
public sealed class UShortEventArgs : GenericEventArgs<ushort>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using ICD.Common.Properties;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
namespace ICD.Common.Utils.EventArguments
|
||||
{
|
||||
public sealed class XmlRecursionEventArgs : EventArgs
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using ICD.Common.EventArguments;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
|
||||
namespace ICD.Common.Services.Logging
|
||||
{
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using ICD.Common.EventArguments;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
|
||||
namespace ICD.Common.Services.Logging
|
||||
{
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System;
|
||||
using ICD.Common.EventArguments;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Utils.Extensions;
|
||||
|
||||
namespace ICD.Common.Utils.Timers
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using ICD.Common.EventArguments;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Properties;
|
||||
#if SIMPLSHARP
|
||||
using Crestron.SimplSharp.CrestronXml;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using ICD.Common.EventArguments;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Properties;
|
||||
using ICD.Common.Utils.Extensions;
|
||||
using ICD.Common.Utils.IO;
|
||||
|
||||
Reference in New Issue
Block a user