NG_/XCharts/Runtime/Internal/Attributes/ListForComponentAttribute.cs

11 lines
243 B
C#
Raw Normal View History

2024-12-13 18:49:44 +08:00
using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public sealed class ListForComponent : ListFor
{
public ListForComponent(Type type) : base(type)
{ }
}
}