Files
XCharts/Runtime/Internal/Attributes/ListForAttribute.cs
2022-01-05 21:40:48 +08:00

15 lines
273 B
C#

using System;
namespace XCharts
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class ListFor : Attribute
{
public readonly Type type;
public ListFor(Type type)
{
this.type = type;
}
}
}