|
|
@@ -11,10 +11,19 @@ namespace Discord |
|
|
|
/// <summary> |
|
|
|
/// Gets or sets the topic of the channel. |
|
|
|
/// </summary> |
|
|
|
/// <remarks> |
|
|
|
/// Setting this value to any string other than <c>null</c> or <see cref="string.Empty"/> will set the |
|
|
|
/// channel topic or description to the desired value. |
|
|
|
/// </remarks> |
|
|
|
public Optional<string> Topic { get; set; } |
|
|
|
/// <summary> |
|
|
|
/// Gets or sets whether this channel should be flagged as NSFW. |
|
|
|
/// </summary> |
|
|
|
/// <remarks> |
|
|
|
/// Setting this value to <c>true</c> will mark the channel as NSFW (Not Safe For Work) and will prompt the |
|
|
|
/// user about its maturity nature before they may view the channel; setting this value to <c>false</c> will |
|
|
|
/// mark this channel as SFW (Safe For Work). |
|
|
|
/// </remarks> |
|
|
|
public Optional<bool> IsNsfw { get; set; } |
|
|
|
/// <summary> |
|
|
|
/// Gets or sets the slow-mode ratelimit in seconds for this channel. |
|
|
|