Browse Source

Add ExplicitContentFilter to GuildProperties

pull/1165/head
Chris Johnston 7 years ago
parent
commit
223642d4ba
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs

+ 4
- 0
src/Discord.Net.Core/Entities/Guilds/GuildProperties.cs View File

@@ -66,5 +66,9 @@ namespace Discord
/// Gets or sets the ID of the owner of this guild.
/// </summary>
public Optional<ulong> OwnerId { get; set; }
/// <summary>
/// Gets or sets the explicit content filter level of this guild.
/// </summary>
public Optional<ExplicitContentFilterLevel> ExplicitContentFilter { get; set; }
}
}

Loading…
Cancel
Save