mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
17 lines
609 B
C#
17 lines
609 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace NadekoBot.Core.Modules.Music
|
|
{
|
|
public sealed class CachableTrackData : ICachableTrackData
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Id { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public string Thumbnail { get; set; } = string.Empty;
|
|
public double TotalDurationMs { get; set; }
|
|
[JsonIgnore]
|
|
public TimeSpan Duration => TimeSpan.FromMilliseconds(TotalDurationMs);
|
|
public MusicPlatform Platform { get; set; }
|
|
}
|
|
} |