// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace autoShell.Services;
///
/// Abstracts display brightness operations for testability.
///
internal interface IBrightnessService
{
///
/// Gets the current display brightness (0–100).
///
byte GetCurrentBrightness();
///
/// Sets the display brightness (0–100).
///
void SetBrightness(byte brightness);
}