10 lines
263 B
C#
10 lines
263 B
C#
using System;
|
|
|
|
namespace Cainos.LucidEditor
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Method)]
|
|
public class BoxGroupAttribute : PropertyGroupAttribute
|
|
{
|
|
public BoxGroupAttribute(string groupName) : base(groupName) { }
|
|
}
|
|
} |