using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface { public interface IUserLogin { /// /// 用户登录 /// /// 用户名 /// 密码 /// bool UserLogin(string UserName, string Password); } }