This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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);
}
}