// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. // Copyright (C) LibreHardwareMonitor and Contributors. // Partial Copyright (C) Michael Möller and Contributors. // All Rights Reserved. using System.Collections.Generic; namespace LibreHardwareMonitor.Hardware; /// /// A group of devices from one category in one list. /// internal interface IGroup { /// /// Gets a list that stores information about in a given group. /// IReadOnlyList Hardware { get; } /// /// Report containing most of the known information about all in this . /// /// A formatted text string with hardware information. string GetReport(); /// /// Stop updating this group in the future. /// void Close(); }