From 69db707d6803ada3891e4e71b8660ad095392973 Mon Sep 17 00:00:00 2001 From: Serghei Cebotari Date: Thu, 8 Feb 2024 17:11:11 +0300 Subject: Rename Parser projects --- RhSolutions.Parsers/ParserKey.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 RhSolutions.Parsers/ParserKey.cs (limited to 'RhSolutions.Parsers/ParserKey.cs') 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 -- cgit v1.2.3