You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModifyCurrentUserParams.cs 352 B

12345678910111213
  1. using Newtonsoft.Json;
  2. namespace Discord.API.Rest
  3. {
  4. [JsonObject(MemberSerialization = MemberSerialization.OptIn)]
  5. internal class ModifyCurrentUserParams
  6. {
  7. [JsonProperty("username")]
  8. public Optional<string> Username { get; set; }
  9. [JsonProperty("avatar")]
  10. public Optional<Image?> Avatar { get; set; }
  11. }
  12. }