summaryrefslogtreecommitdiff
path: root/RhSolutions.Parsers/ParserKey.cs
blob: 3bf451358e13eaf7af06215ccefe58753f72ddaf (plain)
1
2
3
4
5
6
7
8
9
10
namespace RhSolutions.Parsers;

public class ParserKey : Attribute
{
	public string Value { get; private set; }
	public ParserKey(string value)
	{
		Value = value;
	}
}