main
cs 31 lines 998 Bytes
Raw
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.Extensibility.Data
4 {
5 /// <summary>
6 /// A command line command description.
7 /// </summary>
8 public class CommandLineHelpCommand
9 {
10 /// <summary>
11 /// Creates help for command line command.
12 /// </summary>
13 /// <param name="name">Name of command.</param>
14 /// <param name="description">Description for command.</param>
15 public CommandLineHelpCommand(string name, string description)
16 {
17 Name = name;
18 Description = description;
19 }
20
21 /// <summary>
22 /// Name of command.
23 /// </summary>
24 public string Name { get; set; }
25
26 /// <summary>
27 /// Description of the command.
28 /// </summary>
29 public string Description { get; set; }
30 }
31 }