winget-cli

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

WingetDependencies.cs (778B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="WingetDependencies.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 namespace Microsoft.WinGet.Client.Engine.Helpers
      7 {
      8     using System.Collections.Generic;
      9 
     10     /// <summary>
     11     /// An object representation of the dependencies json.
     12     /// </summary>
     13     internal class WingetDependencies
     14     {
     15         /// <summary>
     16         /// Gets or sets a list of required package dependencies.
     17         /// </summary>
     18         public List<PackageDependency> Dependencies { get; set; } = new List<PackageDependency>();
     19     }
     20 }