mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
16 lines
403 B
C#
16 lines
403 B
C#
#nullable enable
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Core.Modules.Music
|
|
{
|
|
public interface ITrackInfo
|
|
{
|
|
public string Title { get; }
|
|
public string Url { get; }
|
|
public string Thumbnail { get; }
|
|
public TimeSpan Duration { get; }
|
|
public MusicPlatform Platform { get; }
|
|
public ValueTask<string?> GetStreamUrl();
|
|
}
|
|
} |