MockFeedPackage.cs 347 B

12345678910111213
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. namespace Microsoft.DotNet.Tools.Tests.ComponentMocks
  4. {
  5. public class MockFeedPackage
  6. {
  7. public string PackageId;
  8. public string Version;
  9. public string ToolCommandName;
  10. }
  11. }