NG_/Assets/XCharts/Runtime/Internal/Attributes/IgnoreDocAttribute.cs

12 lines
210 B
C#
Raw Permalink Normal View History

2024-12-13 19:40:05 +08:00
using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class IgnoreDoc : Attribute
{
public IgnoreDoc()
{
}
}
}