15 lines
416 B
C#
15 lines
416 B
C#
using Discord.API.Rest;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Discord
|
|
{
|
|
public interface ITextChannel : IMessageChannel, IMentionable, IGuildChannel
|
|
{
|
|
/// <summary> Gets the current topic for this text channel. </summary>
|
|
string Topic { get; }
|
|
|
|
/// <summary> Modifies this text channel. </summary>
|
|
Task Modify(Action<ModifyTextChannelParams> func);
|
|
}
|
|
} |