9 lines
143 B
C#
9 lines
143 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public interface IAttribute
|
|
{
|
|
Type TargetAttributeType { get; }
|
|
}
|
|
}
|