Files
SilverMetal/windows/welcome/src/SilverOS.Welcome.Core/Apps/IAppInstaller.cs
2026-06-10 00:22:19 +01:00

12 lines
346 B
C#

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