9 lines
157 B
C#
9 lines
157 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
public abstract class MetaAttribute : NaughtyAttribute
|
|
{
|
|
public int Order { get; set; }
|
|
}
|
|
}
|