NG_/XCharts/Runtime/Internal/Attributes/ListForSerieAttribute.cs
2024-12-13 18:49:44 +08:00

11 lines
235 B
C#

using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public sealed class ListForSerie : ListFor
{
public ListForSerie(Type type) : base(type)
{ }
}
}