From 5bfd21aaa90817f14c9e2931e77b20f4276f16ed Mon Sep 17 00:00:00 2001 From: azyges <229218900+azyges@users.noreply.github.com> Date: Fri, 26 Sep 2025 23:40:44 +0900 Subject: [PATCH] update connection dto --- LightlessSyncAPI/Dto/ConnectionDto.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LightlessSyncAPI/Dto/ConnectionDto.cs b/LightlessSyncAPI/Dto/ConnectionDto.cs index eea8666..d52a83f 100644 --- a/LightlessSyncAPI/Dto/ConnectionDto.cs +++ b/LightlessSyncAPI/Dto/ConnectionDto.cs @@ -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(); }