|
|
@@ -7,8 +7,6 @@ namespace Discord |
|
|
|
[DebuggerDisplay(@"{DebuggerDisplay,nq}")] |
|
|
|
public class SpotifyGame : Game |
|
|
|
{ |
|
|
|
internal SpotifyGame() { } |
|
|
|
|
|
|
|
public string[] Artists { get; internal set; } |
|
|
|
public string AlbumArt { get; internal set; } |
|
|
|
public string AlbumTitle { get; internal set; } |
|
|
@@ -17,6 +15,8 @@ namespace Discord |
|
|
|
public string SessionId { get; internal set; } |
|
|
|
public TimeSpan? Duration { get; internal set; } |
|
|
|
|
|
|
|
internal SpotifyGame() { } |
|
|
|
|
|
|
|
public override string ToString() => Name; |
|
|
|
private string DebuggerDisplay => $"{Name} (Spotify)"; |
|
|
|
} |
|
|
|