Sky.Net/Core/Interfaces/ITokenService.cs

13 lines
246 B
C#
Raw Normal View History

2022-05-19 13:50:10 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Core.Entities.Identity;
namespace Core.Interfaces
{
public interface ITokenService
{
string CreateToken(AppUser user);
}
}