Added Topic support
This commit is contained in:
@@ -110,6 +110,8 @@ namespace Discord.API
|
|||||||
public bool IsPrivate;
|
public bool IsPrivate;
|
||||||
[JsonProperty("position")]
|
[JsonProperty("position")]
|
||||||
public int Position;
|
public int Position;
|
||||||
|
[JsonProperty(PropertyName = "topic")]
|
||||||
|
public string Topic;
|
||||||
[JsonProperty("permission_overwrites")]
|
[JsonProperty("permission_overwrites")]
|
||||||
public PermissionOverwrite[] PermissionOverwrites;
|
public PermissionOverwrite[] PermissionOverwrites;
|
||||||
[JsonProperty("recipient")]
|
[JsonProperty("recipient")]
|
||||||
|
|||||||
@@ -25,6 +25,8 @@ namespace Discord
|
|||||||
/// <summary> Returns the name of this channel. </summary>
|
/// <summary> Returns the name of this channel. </summary>
|
||||||
public string Name { get { return !IsPrivate ? $"{_name}" : $"@{Recipient.Name}"; } internal set { _name = value; } }
|
public string Name { get { return !IsPrivate ? $"{_name}" : $"@{Recipient.Name}"; } internal set { _name = value; } }
|
||||||
|
|
||||||
|
/// <summary> Returns the topic associated with this channel. </summary>
|
||||||
|
public string Topic { get; internal set; }
|
||||||
/// <summary> Returns the position of this channel in the channel list for this server. </summary>
|
/// <summary> Returns the position of this channel in the channel list for this server. </summary>
|
||||||
public int Position { get; internal set; }
|
public int Position { get; internal set; }
|
||||||
/// <summary> Returns false is this is a public chat and true if this is a private chat with another user (see Recipient). </summary>
|
/// <summary> Returns false is this is a public chat and true if this is a private chat with another user (see Recipient). </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user