mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
15b70ede7c
Fix Some Issues with Track Mapping
26 lines
607 B
C#
26 lines
607 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
|
|
{
|
|
public class TrackResource
|
|
{
|
|
public TrackResource()
|
|
{
|
|
|
|
}
|
|
|
|
public int DiscNumber { get; set; }
|
|
public int DurationMs { get; set; }
|
|
public string Href { get; set; }
|
|
public string Id { get; set; }
|
|
public string TrackName { get; set; }
|
|
public int TrackNumber { get; set; }
|
|
public bool Explicit { get; set; }
|
|
public List<ArtistResource> Artists { get; set; }
|
|
|
|
}
|
|
}
|