This commit is contained in:
2025-05-14 06:26:10 +08:00
parent 4ae72d2e6b
commit 87fda473d3
7 changed files with 83 additions and 22 deletions
+4 -4
View File
@@ -7,8 +7,8 @@ namespace SimApi.Communications;
/// </summary>
public class SimApiLoginItem
{
public string? Id { get; set; }
public string[] Type { get; set; } = new[] { "user" };
public Dictionary<string, string>? Meta { get; set; } = null;
public object? Extra { get; set; } = null;
public string Id { get; set; } = null!;
public string[] Type { get; set; } = ["user"];
public Dictionary<string, string> Meta { get; set; } = new();
public object? Extra { get; set; }
};