mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
15 lines
292 B
C#
15 lines
292 B
C#
|
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
|
|||
|
{
|
|||
|
string GenerateToken(ApplicationUser user);
|
|||
|
}
|
|||
|
}
|