20 lines
452 B
C#
20 lines
452 B
C#
|
using MyCode.Project.Domain.Message.Response.User;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Services
|
|||
|
{
|
|||
|
public interface ICheckTokenService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// CheckToken
|
|||
|
/// </summary>
|
|||
|
/// <param name="loginInfo"></param>
|
|||
|
/// <returns></returns>
|
|||
|
bool CheckToken(LoginInfo loginInfo);
|
|||
|
}
|
|||
|
}
|