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

12 lines
243 B
C#
Raw Normal View History

2021-11-23 13:20:07 +08:00
using System;
namespace XCharts
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public sealed class ListForComponent : ListFor
{
public ListForComponent(Type type) : base(type)
{
}
}
}