Files
SGGL_SGY/SUBQHSE/BLL/Oauth/IOauthService.cs
T

12 lines
155 B
C#
Raw Normal View History

2025-05-08 14:26:36 +08:00
using Model;
namespace BLL.Oauth
{
public interface IOauthService
{
Sys_User GetLoginInfo(string token, ref string message);
}
}