Change id types

This commit is contained in:
phoenix
2025-04-03 19:38:58 -04:00
parent 12c4f56a22
commit 725eab7e7f
3 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ public class LoginResult : BaseResult
{
#region Properties
[JsonProperty("user_id")]
public int UserId { get; set; }
public Guid UserId { get; set; }
[JsonProperty("username")]
public string? Username { get; set; }
[JsonProperty("token")]