update connection dto

This commit is contained in:
azyges
2025-09-26 23:40:44 +09:00
parent b85b54f560
commit 5bfd21aaa9

View File

@@ -10,6 +10,9 @@ public record ConnectionDto(UserData User)
public int ServerVersion { get; set; }
public bool IsAdmin { get; set; }
public bool IsModerator { get; set; }
public bool HasVanity { get; set; }
public string? TextColorHex { get; set; }
public string? TextGlowColorHex { get; set; }
public ServerInfo ServerInfo { get; set; } = new();
public DefaultPermissionsDto DefaultPreferredPermissions { get; set; } = new();
}