9 lines
201 B
C#
9 lines
201 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
|
|
public class ReadOnlyAttribute : DrawerAttribute
|
|
{
|
|
}
|
|
}
|