mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
14 lines
338 B
C#
14 lines
338 B
C#
using System;
|
|
|
|
namespace NadekoBot.Core.Modules.Music
|
|
{
|
|
public interface ICachableTrackData
|
|
{
|
|
string Id { get; set; }
|
|
string Url { get; set; }
|
|
string Thumbnail { get; set; }
|
|
public TimeSpan Duration { get; }
|
|
MusicPlatform Platform { get; set; }
|
|
string Title { get; set; }
|
|
}
|
|
} |