You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
470 B
19 lines
470 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.PluginServiceInterface |
|
{ |
|
public interface IUserLogin |
|
{ |
|
/// <summary> |
|
/// 用户登录 |
|
/// </summary> |
|
/// <param name="UserName">用户名</param> |
|
/// <param name="Password">密码</param> |
|
/// <returns></returns> |
|
bool UserLogin(string UserName, string Password); |
|
} |
|
}
|
|
|