Added refresh token endpoint

This commit is contained in:
2026-05-28 14:05:47 +01:00
parent 76239b41bd
commit fc9da89ebe
5 changed files with 76 additions and 2 deletions
@@ -0,0 +1,6 @@
namespace PyroFetes.DTO.Refresh.Response;
public class GetRefreshTokenDto
{
public string? Token { get; set; }
}