13 lines
296 B
C#
13 lines
296 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
|
public class BoxGroupAttribute : GroupAttribute
|
|
{
|
|
public BoxGroupAttribute(string name = "")
|
|
: base(name)
|
|
{
|
|
}
|
|
}
|
|
}
|