mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-12 19:25:00 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.Attributes
|
|
{
|
|
/// <summary>
|
|
/// AbstractIcdAttribute is the base class for all ICD attributes.
|
|
/// </summary>
|
|
public abstract class AbstractIcdAttribute : Attribute, IIcdAttribute
|
|
{
|
|
}
|
|
}
|