From 57d0b481f161214352bdf7c49e50df6c1349e105 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Fri, 21 Jul 2017 12:18:23 -0400 Subject: [PATCH] Moving SettingsProperty attribute to Settings library --- .../Attributes/Properties/SettingsProperty.cs | 39 ------------------- .../ICD.Common.Utils_SimplSharp.csproj | 1 - 2 files changed, 40 deletions(-) delete mode 100644 ICD.Common.Utils/Attributes/Properties/SettingsProperty.cs 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 @@ -