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.
26 lines
687 B
26 lines
687 B
#pragma warning disable CS1591
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Discord.API
|
|
{
|
|
internal class Webhook
|
|
{
|
|
[JsonProperty("id")]
|
|
public ulong Id { get; set; }
|
|
[JsonProperty("channel_id")]
|
|
public ulong ChannelId { get; set; }
|
|
[JsonProperty("token")]
|
|
public string Token { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public Optional<string> Name { get; set; }
|
|
[JsonProperty("avatar")]
|
|
public Optional<string> Avatar { get; set; }
|
|
[JsonProperty("guild_id")]
|
|
public Optional<ulong> GuildId { get; set; }
|
|
|
|
[JsonProperty("user")]
|
|
public Optional<User> Creator { get; set; }
|
|
}
|
|
}
|