using SilverOS.Welcome.Core.Apply; namespace SilverOS.Welcome.Core.Apps; public sealed record AppInstallResult(string Id, bool Installed); public interface IAppInstaller { Task> InstallAsync( IReadOnlyList apps, IProgress progress, CancellationToken ct = default); }