using AIK.Common.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Common.Interface { public interface IUpdateService { #region 原生更新-界面无自定义 /// /// 手动检查更新 /// /// 更新结果 Task CheckForUpdateAsync(); /// /// 原版更新(无自定义界面) /// /// public Task StartUpdateProcess(); #endregion #region 新自定义更新-界面可自定义 /// /// 新自定义更新(检查更新) /// /// public Task GetUpdateInfoAsync(); /// /// 自定义更新 /// /// public Task CheckForUpdate(); #endregion } }