9 lines
157 B
C#
9 lines
157 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
// The base class for all naughty attributes
|
|
public class NaughtyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|