using MoonlightServers.Daemon.Models; namespace MoonlightServers.Daemon.ServerSystem.Abstractions; public interface IInstallEnvironmentService { public Task FindAsync(string id); public Task CreateAsync( string id, RuntimeConfiguration runtimeConfiguration, InstallConfiguration installConfiguration, IInstallStorage installStorage, IRuntimeStorage runtimeStorage ); public Task DeleteAsync(IInstallEnvironment environment); }