using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ModVersionChecker.service.interfaces { public interface IVersionService { //App CheckAppStatus(App app); //Task CheckAllApps(); string GetCurrentVersion(App app); bool IsUpdateAvailable(string currentVersion, string latestVersion); } }