winget-cli

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

IResourceGetItem.cs (743B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="IResourceGetItem.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.DSCv3.Model
      8 {
      9     using Windows.Foundation.Collections;
     10 
     11     /// <summary>
     12     /// The interface to a `resource get` command result.
     13     /// </summary>
     14     internal interface IResourceGetItem
     15     {
     16         /// <summary>
     17         /// Gets the settings for this item.
     18         /// </summary>
     19         public ValueSet Settings { get; }
     20     }
     21 }