using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Service.IService { public interface ILoadAware { /// /// 页面加载完成后异步初始化 /// Task OnLoadedAsync(); } }