You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1001 B
30 lines
1001 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Model = Discord.API.Channel;
|
|
|
|
namespace Discord.Rest
|
|
{
|
|
/// <summary>
|
|
/// Represents a REST-based news channel in a guild that has the same properties as a <see cref="RestTextChannel"/>.
|
|
/// </summary>
|
|
[DebuggerDisplay(@"{DebuggerDisplay,nq}")]
|
|
public class RestNewsChannel : RestTextChannel
|
|
{
|
|
internal RestNewsChannel(BaseDiscordClient discord, IGuild guild, ulong id)
|
|
:base(discord, guild, id)
|
|
{
|
|
}
|
|
internal new static RestNewsChannel Create(BaseDiscordClient discord, IGuild guild, Model model)
|
|
{
|
|
var entity = new RestNewsChannel(discord, guild, model.Id);
|
|
entity.Update(model);
|
|
return entity;
|
|
}
|
|
public override int SlowModeInterval => throw new NotSupportedException("News channels do not support Slow Mode.");
|
|
}
|
|
}
|