| File: Tokenizer\Token.cs | Web Access |
| Project: src\src\nuget-client\src\NuGet.Core\NuGet.Common\NuGet.Common.csproj (NuGet.Common) |
namespace NuGet.Common { public class Token { public string Value { get; private set; } public TokenCategory Category { get; private set; } public Token(TokenCategory category, string value) { Category = category; Value = value; } } } |