mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 12:40:12 +00:00
11 lines
235 B
C#
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)
|
|
{ }
|
|
}
|
|
} |