8 lines
178 B
C#
8 lines
178 B
C#
using System;
|
|
|
|
namespace PashaBibko.Pacore.Attributes
|
|
{
|
|
[AttributeUsage(validOn: AttributeTargets.Field)]
|
|
public class StaticInspectorFieldAttribute : Attribute { }
|
|
}
|