We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e22369b + 154a19c commit 1a88db1Copy full SHA for 1a88db1
1 file changed
Sources/EasyExtensions.EntityFrameworkCore/Database/ExtendedRefreshToken.cs
@@ -67,5 +67,12 @@ public class ExtendedRefreshToken : RefreshToken
67
/// </summary>
68
[Column("session_id")]
69
public string? SessionId { get; set; }
70
+
71
+ /// <summary>
72
+ /// Gets or sets a value indicating when the device can store the refresh token forever without needing to re-authenticate.
73
+ /// This can be used to determine if the token should have an extended expiration time or if it should require periodic re-authentication.
74
+ /// </summary>
75
+ [Column("is_trusted")]
76
+ public bool IsTrusted { get; set; }
77
}
78
0 commit comments