12 lines
155 B
C#
12 lines
155 B
C#
|
using Model;
|
|||
|
|
|||
|
namespace BLL.Oauth
|
|||
|
{
|
|||
|
|
|||
|
public interface IOauthService
|
|||
|
{
|
|||
|
Sys_User GetLoginInfo(string token, ref string message);
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|