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