mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
15 lines
273 B
C#
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;
|
|
}
|
|
}
|
|
} |