Files
XCharts/Runtime/Internal/Attributes/ListForSerieAttribute.cs
monitor1394 bafe032bb9 3.0
2022-05-22 22:17:38 +08:00

11 lines
235 B
C#

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