mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
25 lines
614 B
C#
25 lines
614 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
|
|
{
|
|
public class TrackInfoResource
|
|
{
|
|
public TrackInfoResource()
|
|
{
|
|
|
|
}
|
|
|
|
public int DiscNumber { get; set; }
|
|
public int DurationMs { get; set; }
|
|
public string Href { get; set; }
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int TrackNumber { get; set; }
|
|
public bool Explicit { get; set; }
|
|
public List<ArtistInfoResource> Artists { get; set; }
|
|
|
|
}
|
|
}
|