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/MediaFiles/RetagTrackFilePreview.cs

16 lines
442 B

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.MediaFiles
{
public class RetagTrackFilePreview
{
public int ArtistId { get; set; }
public int AlbumId { get; set; }
public List<int> TrackNumbers { get; set; }
public int TrackFileId { get; set; }
public string Path { get; set; }
public Dictionary<string, Tuple<string, string>> Changes { get; set; }
}
}