using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Discord.API
{
public class MessageApplication
{
///
/// Gets the snowflake ID of the application.
///
[JsonProperty("id")]
public ulong Id { get; set; }
///
/// Gets the ID of the embed's image asset.
///
[JsonProperty("cover_image")]
public string CoverImage { get; set; }
///
/// Gets the application's description.
///
[JsonProperty("description")]
public string Description { get; set; }
///
/// Gets the ID of the application's icon.
///
[JsonProperty("icon")]
public string Icon { get; set; }
///
/// Gets the name of the application.
///
[JsonProperty("name")]
public string Name { get; set; }
}
}