Files
XCharts/Runtime/Internal/Attributes/SinceAttribute.cs

15 lines
291 B
C#
Raw Normal View History

2022-06-25 11:45:22 +08:00
using System;
namespace XCharts.Runtime
{
2022-07-17 20:57:38 +08:00
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
2022-06-25 11:45:22 +08:00
public class Since : Attribute
{
public readonly string version;
public Since(string version)
{
this.version = version;
}
}
}