mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
11 lines
No EOL
282 B
C#
11 lines
No EOL
282 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using Roadie.Library.Identity;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface ITokenService
|
|
{
|
|
Task<string> GenerateToken(ApplicationUser user, UserManager<ApplicationUser> userManager);
|
|
}
|
|
} |