mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
12 lines
243 B
C#
12 lines
243 B
C#
using System;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
|
|
public sealed class ListForSerie : ListFor
|
|
{
|
|
public ListForSerie(Type type) : base(type)
|
|
{
|
|
}
|
|
}
|
|
} |