mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 14:37:34 +00:00
Silent merge fail
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace WinStudentGoalTracker.Models.ResponseTypes;
|
||||
|
||||
public class GoalBreakdownResponse
|
||||
{
|
||||
public string Goal { get; set; } = string.Empty;
|
||||
public List<string> Subgoals { get; set; } = [];
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace WinStudentGoalTracker.Models;
|
||||
|
||||
public class LoginResponse
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public required string Email { get; set; }
|
||||
public required string Jwt { get; set; }
|
||||
public required string RefreshToken { get; set; }
|
||||
public string? Role { get; set; }
|
||||
public string? RoleDisplayName { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace WinStudentGoalTracker.Models;
|
||||
|
||||
public class TokenRefreshResponse
|
||||
{
|
||||
public required string Jwt { get; set; }
|
||||
public required string NewRefreshToken { get; set; }
|
||||
public int JwtExpiresIn { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user