Made API models internal. Removed Discord.Net.API.
This commit is contained in:
13
src/Discord.Net.Rest/API/Common/GuildEmbed.cs
Normal file
13
src/Discord.Net.Rest/API/Common/GuildEmbed.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma warning disable CS1591
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Discord.API
|
||||
{
|
||||
internal class GuildEmbed
|
||||
{
|
||||
[JsonProperty("enabled")]
|
||||
public bool Enabled { get; set; }
|
||||
[JsonProperty("channel_id")]
|
||||
public ulong ChannelId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user