15 lines
276 B
C#
15 lines
276 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Server.User
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 用户数据接口
|
|||
|
/// </summary>
|
|||
|
interface IUserData
|
|||
|
{
|
|||
|
bool CheckUser(string userName, string password, out string nickName);
|
|||
|
}
|
|||
|
}
|