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(); }