[doc] add since version

This commit is contained in:
monitor1394
2022-06-25 11:45:22 +08:00
parent 9a1c76c236
commit f19b61f1f2
9 changed files with 1572 additions and 1491 deletions

View File

@@ -0,0 +1,15 @@
using System;
namespace XCharts.Runtime
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class Since : Attribute
{
public readonly string version;
public Since(string version)
{
this.version = version;
}
}
}