winget-cli

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

InstallerArpEntry.cs (1334B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="InstallerArpEntry.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     /// Class that contains installer arp entry.
     11     /// </summary>
     12     public class InstallerArpEntry
     13     {
     14         /// <summary>
     15         /// Gets or sets the display name.
     16         /// </summary>
     17         public string DisplayName { get; set; }
     18 
     19         /// <summary>
     20         /// Gets or sets the publisher.
     21         /// </summary>
     22         public string Publisher { get; set; }
     23 
     24         /// <summary>
     25         /// Gets or sets the display version.
     26         /// </summary>
     27         public string DisplayVersion { get; set; }
     28 
     29         /// <summary>
     30         /// Gets or sets the ProductCode.
     31         /// </summary>
     32         public string ProductCode { get; set; }
     33 
     34         /// <summary>
     35         /// Gets or sets the UpgradeCode.
     36         /// </summary>
     37         public string UpgradeCode { get; set; }
     38 
     39         /// <summary>
     40         /// Gets or sets the installer type.
     41         /// </summary>
     42         public string InstallerType { get; set; }
     43     }
     44 }