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

11 lines
243 B
C#

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