10 lines
148 B
C#
10 lines
148 B
C#
using noteApi.Models;
|
|
|
|
namespace noteApi.Interfaces
|
|
{
|
|
public interface ITokenService
|
|
{
|
|
string CreateToken(AppUser user);
|
|
}
|
|
}
|