@@ -13,19 +13,19 @@ namespace Discord
/// <summary>
/// <summary>
/// Gets the snowflake ID of the application.
/// Gets the snowflake ID of the application.
/// </summary>
/// </summary>
public ulong Id { get; set; }
public ulong Id { get; internal set; }
/// <summary>
/// <summary>
/// Gets the ID of the embed's image asset.
/// Gets the ID of the embed's image asset.
/// </summary>
/// </summary>
public string CoverImage { get; set; }
public string CoverImage { get; internal set; }
/// <summary>
/// <summary>
/// Gets the application's description.
/// Gets the application's description.
/// </summary>
/// </summary>
public string Description { get; set; }
public string Description { get; internal set; }
/// <summary>
/// <summary>
/// Gets the ID of the application's icon.
/// Gets the ID of the application's icon.
/// </summary>
/// </summary>
public string Icon { get; set; }
public string Icon { get; internal set; }
/// <summary>
/// <summary>
/// Gets the Url of the application's icon.
/// Gets the Url of the application's icon.
/// </summary>
/// </summary>
@@ -34,7 +34,7 @@ namespace Discord
/// <summary>
/// <summary>
/// Gets the name of the application.
/// Gets the name of the application.
/// </summary>
/// </summary>
public string Name { get; set; }
public string Name { get; internal set; }
private string DebuggerDisplay
private string DebuggerDisplay
=> $"{Name} ({Id}): {Description}";
=> $"{Name} ({Id}): {Description}";
public override string ToString()
public override string ToString()