sec: to establish the ownership of the token for the first one who received it

This commit is contained in:
2024-12-28 08:30:56 +03:00
parent e79ddf220f
commit 6358410f18
2 changed files with 35 additions and 2 deletions

View File

@ -5,5 +5,8 @@ internal class OAuthUserExtension
public string? Message { get; set; }
public bool IsSuccess { get; set; }
public required OAuthProvider? Provider { get; set; }
public string? UserAgent { get; set; } = null;
public string? Ip { get; set; } = null;
public string? Fingerprint { get; set; } = null;
public OAuthUser? User { get; set; }
}