| @@ -26,21 +26,17 @@ namespace Discord | |||||
| /// 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; set; } | ||||
| /// <summary> | /// <summary> | ||||
| /// Gets the Url of the application's icon. | /// Gets the Url of the application's icon. | ||||
| /// </summary> | /// </summary> | ||||
| public string IconUrl | public string IconUrl | ||||
| => $"https://cdn.discordapp.com/app-icons/{Id}/{Icon}"; | => $"https://cdn.discordapp.com/app-icons/{Id}/{Icon}"; | ||||
| /// <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; set; } | ||||
| private string DebuggerDisplay | private string DebuggerDisplay | ||||
| => $"{Name} ({Id}): {Description}"; | => $"{Name} ({Id}): {Description}"; | ||||
| public override string ToString() | public override string ToString() | ||||
| => DebuggerDisplay; | => DebuggerDisplay; | ||||
| } | } | ||||