Files

16 lines
413 B
C#
Raw Permalink Normal View History

using WatchIt.Database.Model.Accounts;
namespace WatchIt.DTO.Models.Controllers.Authentication;
public static class AuthenticationMappers
{
#region Authentication
public static AuthenticationResponse CreateAuthenticationResponse(string accessToken, string refreshToken) => new AuthenticationResponse
{
AccessToken = accessToken,
RefreshToken = refreshToken,
};
#endregion
}