diff --git a/ICD.Common.Utils/Attributes/Properties/SettingsProperty.cs b/ICD.Common.Utils/Attributes/Properties/SettingsProperty.cs deleted file mode 100644 index f50520e..0000000 --- a/ICD.Common.Utils/Attributes/Properties/SettingsProperty.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using ICD.Common.Properties; - -namespace ICD.Common.Attributes.Properties -{ - /// - /// Provides information on a settings property. - /// - [PublicAPI] - public sealed class SettingsProperty : Attribute - { - public enum ePropertyType - { - [PublicAPI] Default, - [PublicAPI] Hidden, - [PublicAPI] PortId, - [PublicAPI] DeviceId, - [PublicAPI] Ipid, - [PublicAPI] Enum - } - - private readonly ePropertyType m_PropertyType; - - /// - /// Gets the property type. - /// - [PublicAPI] - public ePropertyType PropertyType { get { return m_PropertyType; } } - - /// - /// Constructor. - /// - /// - public SettingsProperty(ePropertyType propertyType) - { - m_PropertyType = propertyType; - } - } -} diff --git a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj index b6944e9..5c10690 100644 --- a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj +++ b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj @@ -71,7 +71,6 @@ -