You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/MetadataSource/SkyHook/Resource/TrackResource.cs

22 lines
563 B

namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
{
public class TrackResource
{
public TrackResource()
{
}
public string ArtistId { get; set; }
public int DurationMs { get; set; }
public string Id { get; set; }
public string RecordingId { get; set; }
public string TrackName { get; set; }
public string TrackNumber { get; set; }
public int TrackPosition { get; set; }
public bool Explicit { get; set; }
public int MediumNumber { get; set; }
}
}