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)
|
|
{ }
|
|
}
|
|
} |