Browse Source

clean up whitespace

pull/1165/head
Chris Johnston 7 years ago
parent
commit
31e8ad0c05
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      src/Discord.Net.Core/Entities/Messages/MessageApplication.cs

+ 0
- 4
src/Discord.Net.Core/Entities/Messages/MessageApplication.cs View File

@@ -26,21 +26,17 @@ namespace Discord
/// Gets the ID of the application's icon.
/// </summary>
public string Icon { get; set; }

/// <summary>
/// Gets the Url of the application's icon.
/// </summary>
public string IconUrl
=> $"https://cdn.discordapp.com/app-icons/{Id}/{Icon}";

/// <summary>
/// Gets the name of the application.
/// </summary>
public string Name { get; set; }

private string DebuggerDisplay
=> $"{Name} ({Id}): {Description}";

public override string ToString()
=> DebuggerDisplay;
}


Loading…
Cancel
Save