12 lines
210 B
C#
12 lines
210 B
C#
using System;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
|
|
public class IgnoreDoc : Attribute
|
|
{
|
|
public IgnoreDoc()
|
|
{
|
|
}
|
|
}
|
|
} |