15 lines
291 B
C#
15 lines
291 B
C#
using System;
|
|
|
|
namespace XCharts.Runtime
|
|
{
|
|
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
|
|
public class Since : Attribute
|
|
{
|
|
public readonly string version;
|
|
|
|
public Since(string version)
|
|
{
|
|
this.version = version;
|
|
}
|
|
}
|
|
} |