diff --git a/NetCord/Rest/CurrentGuildUserOptions.cs b/NetCord/Rest/CurrentGuildUserOptions.cs index a8c59347..12c1218c 100644 --- a/NetCord/Rest/CurrentGuildUserOptions.cs +++ b/NetCord/Rest/CurrentGuildUserOptions.cs @@ -15,4 +15,25 @@ internal CurrentGuildUserOptions() [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] [JsonPropertyName("nick")] public string? Nickname { get; set; } + + /// + /// New banner image. + /// + [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + [JsonPropertyName("banner")] + public ImageProperties? Banner { get; set; } + + /// + /// New avatar image. + /// + [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + [JsonPropertyName("avatar")] + public ImageProperties? Avatar { get; set; } + + /// + /// New bio, empty to remove bio. + /// + [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] + [JsonPropertyName("bio")] + public string? Bio { get; set; } }