summaryrefslogtreecommitdiff
path: root/RhSolutions.Parsers/ParserKey.cs
diff options
context:
space:
mode:
Diffstat (limited to 'RhSolutions.Parsers/ParserKey.cs')
-rw-r--r--RhSolutions.Parsers/ParserKey.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/RhSolutions.Parsers/ParserKey.cs b/RhSolutions.Parsers/ParserKey.cs
new file mode 100644
index 0000000..3bf4513
--- /dev/null
+++ b/RhSolutions.Parsers/ParserKey.cs
@@ -0,0 +1,10 @@
+namespace RhSolutions.Parsers;
+
+public class ParserKey : Attribute
+{
+ public string Value { get; private set; }
+ public ParserKey(string value)
+ {
+ Value = value;
+ }
+} \ No newline at end of file