diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1714900..bc7dfc7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- RangeAttribute improvements for better type safety
- PathUtils breaking out ProgramConfigDirectory and CommonConfigDirectory from the full paths
+## [8.3.3] - 2019-05-24
+### Added
+ - Added empty, placeholder interface for ICD Attributes
+
## [8.3.2] - 2019-05-02
### Changed
- Fixed PriorityQueue IndexOutOfRange exception when an inner queue becomes depleted
diff --git a/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs b/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs
index 51ab59a..e1cf5fa 100644
--- a/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs
+++ b/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs
@@ -5,7 +5,7 @@ namespace ICD.Common.Utils.Attributes
///
/// AbstractIcdAttribute is the base class for all ICD attributes.
///
- public abstract class AbstractIcdAttribute : Attribute
+ public abstract class AbstractIcdAttribute : Attribute, IIcdAttribute
{
}
}
diff --git a/ICD.Common.Utils/Attributes/IIcdAttribute.cs b/ICD.Common.Utils/Attributes/IIcdAttribute.cs
new file mode 100644
index 0000000..ec9f029
--- /dev/null
+++ b/ICD.Common.Utils/Attributes/IIcdAttribute.cs
@@ -0,0 +1,6 @@
+namespace ICD.Common.Utils.Attributes
+{
+ public interface IIcdAttribute
+ {
+ }
+}
diff --git a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj
index 297b013..4c40754 100644
--- a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj
+++ b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj
@@ -75,6 +75,7 @@
+