10 lines
297 B
C#
10 lines
297 B
C#
namespace PlaylistShared.Shared.DTO;
|
|
|
|
public class YandexTrack
|
|
{
|
|
public string Id { get; set; } = "";
|
|
public string Title { get; set; } = "";
|
|
public List<string> Artists { get; set; } = new();
|
|
public long DurationMs { get; set; }
|
|
public string CoverUri { get; set; } = "";
|
|
} |