diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-07-23 13:46:09 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-07-23 13:46:09 -0700 |
| commit | e130a7a296696e3a7b1229cf580de393b3f20cbd (patch) | |
| tree | c7677e1fcb88bfd88b9a314ccc23d987f8bbc870 /src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs | |
| parent | d3da4f5cc6f07376a783ba4bdd03c3bb8dc5e480 (diff) | |
| download | wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.gz wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.bz2 wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.zip | |
Reorganize data into Extensibility.Data namespace
Diffstat (limited to 'src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs b/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs new file mode 100644 index 00000000..d1d8f0c3 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/ExtensionCommandLineSwitch.cs | |||
| @@ -0,0 +1,14 @@ | |||
| 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 option. | ||
| 7 | /// </summary> | ||
| 8 | public struct ExtensionCommandLineSwitch | ||
| 9 | { | ||
| 10 | public string Switch { get; set; } | ||
| 11 | |||
| 12 | public string Description { get; set; } | ||
| 13 | } | ||
| 14 | } | ||
