blob: 5815abf0deb98a7dc5c031c053360cb976795763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// 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.
namespace WixToolset.Harvesters.Data
{
/// <summary>
/// A command line option.
/// </summary>
public struct HeatCommandLineOption
{
/// <summary>
/// The option name used on the command line.
/// </summary>
public string Option;
/// <summary>
/// Description shown in Help command.
/// </summary>
public string Description;
/// <summary>
/// Instantiates a new CommandLineOption.
/// </summary>
/// <param name="option">The option name.</param>
/// <param name="description">The description of the option.</param>
public HeatCommandLineOption(string option, string description)
{
this.Option = option;
this.Description = description;
}
}
}
|