14 lines
262 B
C#
14 lines
262 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
public abstract class GroupAttribute : NaughtyAttribute
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public GroupAttribute(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
}
|
|
}
|