Files
nadekobot/src/NadekoBot/Modules/Music/_common/ITrackInfo.cs

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();
}