winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

InstallerNestedInstallerFile.cs (820B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="InstallerNestedInstallerFile.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGetUtil.Models.V1
      8 {
      9     /// <summary>
     10     /// Installer nested installer file.
     11     /// </summary>
     12     public class InstallerNestedInstallerFile
     13     {
     14         /// <summary>
     15         /// Gets or sets relative file part.
     16         /// </summary>
     17         public string RelativeFilePath { get; set; }
     18 
     19         /// <summary>
     20         /// Gets or sets portable command alias.
     21         /// </summary>
     22         public string PortableCommandAlias { get; set; }
     23     }
     24 }