summaryrefslogtreecommitdiffstats
path: root/generator/plugins/dotnet/custom/Since.cs
diff options
context:
space:
mode:
Diffstat (limited to 'generator/plugins/dotnet/custom/Since.cs')
-rw-r--r--generator/plugins/dotnet/custom/Since.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/generator/plugins/dotnet/custom/Since.cs b/generator/plugins/dotnet/custom/Since.cs
new file mode 100644
index 0000000..b13da74
--- /dev/null
+++ b/generator/plugins/dotnet/custom/Since.cs
@@ -0,0 +1,17 @@
+using System;
+
+[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Enum | AttributeTargets.Interface)]
+public class SinceAttribute : Attribute
+{
+ public SinceAttribute()
+ {
+ Version = null;
+ }
+
+ public SinceAttribute(string version)
+ {
+ Version = version;
+ }
+
+ public string? Version { get; }
+} \ No newline at end of file