| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 2 | |
| 3 | namespace WixToolset.Harvesters.Data |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// A command line option. |
| 7 | /// </summary> |
| 8 | public struct HeatCommandLineOption |
| 9 | { |
| 10 | /// <summary> |
| 11 | /// The option name used on the command line. |
| 12 | /// </summary> |
| 13 | public string Option; |
| 14 | |
| 15 | /// <summary> |
| 16 | /// Description shown in Help command. |
| 17 | /// </summary> |
| 18 | public string Description; |
| 19 | |
| 20 | /// <summary> |
| 21 | /// Instantiates a new CommandLineOption. |
| 22 | /// </summary> |
| 23 | /// <param name="option">The option name.</param> |
| 24 | /// <param name="description">The description of the option.</param> |
| 25 | public HeatCommandLineOption(string option, string description) |
| 26 | { |
| 27 | this.Option = option; |
| 28 | this.Description = description; |
| 29 | } |
| 30 | } |
| 31 | } |