winget-cli

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

ManifestLocalization.cs (1208B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ManifestLocalization.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.WinGetUtil.Models.Preview
      8 {
      9     /// <summary>
     10     /// Class that contains the elements that represent what a manifest localization element can contain in the manifest file.
     11     /// </summary>
     12     public class ManifestLocalization
     13     {
     14         /// <summary>
     15         /// Gets or sets the localization type of manifest. Required element.
     16         /// </summary>
     17         public string Language { get; set; }
     18 
     19         /// <summary>
     20         /// Gets or sets the description of the manifest.
     21         /// </summary>
     22         public string Description { get; set; }
     23 
     24         /// <summary>
     25         /// Gets or sets the homepage related to the package.
     26         /// </summary>
     27         public string Homepage { get; set; }
     28 
     29         /// <summary>
     30         /// Gets or sets the license URL.
     31         /// </summary>
     32         public string LicenseUrl { get; set; }
     33     }
     34 }