mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
15 lines
377 B
C#
15 lines
377 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using Roadie.Library.Data;
|
|
using Roadie.Library.Identity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface ITokenService
|
|
{
|
|
Task<string> GenerateToken(ApplicationUser user, UserManager<ApplicationUser> userManager);
|
|
}
|
|
}
|