rama creada apartir de master en j

This commit is contained in:
jrojas
2026-06-26 10:29:23 +02:00
parent 319fd3dfb0
commit c1517fda87
2810 changed files with 1927392 additions and 25392 deletions
+6
View File
@@ -3,6 +3,9 @@ using adas_core.Domain.Models.MongoModels;
namespace adas_core.Authentication.Models;
/// <summary>
/// Represents the result of a token-related operation, encapsulating the outcome and any associated token data.
/// </summary>
public class TokenResult
{
public string AccessToken { get; set; } = null!;
@@ -12,6 +15,9 @@ public class TokenResult
public User User { get; set; } = new();
}
/// <summary>
/// Represents a panel UI component responsible for displaying token-related results.
/// </summary>
public class TokenResultPanel
{
public TokenResult TokenResult { get; set; } = null!;