winget-cli

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

IResourceTestItem.cs (740B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="IResourceTestItem.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     /// <summary>
     10     /// The interface to a `resource test` command result.
     11     /// </summary>
     12     internal interface IResourceTestItem
     13     {
     14         /// <summary>
     15         /// Gets a value indicating whether the resource is in the desired state.
     16         /// </summary>
     17         public bool InDesiredState { get; }
     18     }
     19 }