19 lines
397 B
C#
19 lines
397 B
C#
using Gatedge.K3Cloud.Utils.Model.K3Request;
|
|
|
|
namespace Gatedge.ScanCode.Services.IServices
|
|
{
|
|
/// <summary>
|
|
/// 账号服务接口
|
|
/// </summary>
|
|
public interface IAccountService
|
|
{
|
|
/// <summary>
|
|
/// 登录
|
|
/// </summary>
|
|
/// <param name="loginInfo"></param>
|
|
/// <returns></returns>
|
|
string Login(LoginInfo loginInfo);
|
|
}
|
|
}
|
|
|