winget-cli

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

IResourceSetItem.cs (762B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="IResourceSetItem.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 System.Collections.Generic;
     10 
     11     /// <summary>
     12     /// The interface to a `resource set` command result.
     13     /// </summary>
     14     internal interface IResourceSetItem
     15     {
     16         /// <summary>
     17         /// Gets a value indicating whether a reboot is required.
     18         /// </summary>
     19         public bool RebootRequired { get; }
     20     }
     21 }