mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
12 lines
336 B
C#
12 lines
336 B
C#
namespace NadekoBot.Modules.Music;
|
|
|
|
public interface ITrackInfo
|
|
{
|
|
public string Id => string.Empty;
|
|
public string Title { get; }
|
|
public string Url { get; }
|
|
public string Thumbnail { get; }
|
|
public TimeSpan Duration { get; }
|
|
public MusicPlatform Platform { get; }
|
|
public ValueTask<string?> GetStreamUrl();
|
|
} |