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