using OF_DL.Models; namespace OF_DL.Services; public interface IStartupService { /// /// Validates the runtime environment and returns a structured result. /// Task ValidateEnvironmentAsync(); /// /// Checks the current application version against the latest release tag. /// Task CheckVersionAsync(); }