using CefSharp.WinForms; using efunbox_xyyf_windows.baseMvp; using efunbox_xyyf_windows.util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace efunbox_xyyf_windows.contract { public class MainContract { public interface IModel :BaseModel{ HttpResult getLenvIdByToken(HttpItem httpItem); } public interface IView : BaseView { ProgressBar getLoadingBar(); ChromiumWebBrowser getWebView(); void getLenvIdSuccess(); } public interface IPresenter { void initWebView(ChromiumWebBrowser webview); string getWebUrl(); void getLenvIdByToken(); void LenvAutoLogin(); } } }