FlowAPI / FlowAPI.Application /Interfaces /ITokenService.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
163 Bytes
using FlowAPI.Domain.Entities;
namespace FlowAPI.Application.Interfaces
{
public interface ITokenService
{
string CreateToken(User user);
}
}