Files
XCharts/Runtime/Internal/Attributes/ListForComponentAttribute.cs
monitor1394 bafe032bb9 3.0
2022-05-22 22:17:38 +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)
{ }
}
}