11 lines
241 B
C#
11 lines
241 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes.Editor
|
|
{
|
|
public class PropertyGrouperAttribute : BaseAttribute
|
|
{
|
|
public PropertyGrouperAttribute(Type targetAttributeType) : base(targetAttributeType)
|
|
{
|
|
}
|
|
}
|
|
}
|