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/TrackFile.cs

42 lines
1.3 KiB

using Marr.Data;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.MediaFiles.MediaInfo;
using NzbDrone.Core.Music;
using NzbDrone.Core.Qualities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Core.Languages;
namespace NzbDrone.Core.MediaFiles
{
public class TrackFile : ModelBase
{
// these are model properties
public string RelativePath { get; set; }
public string Path { get; set; }
public long Size { get; set; }
public DateTime DateAdded { get; set; }
public string SceneName { get; set; }
public string ReleaseGroup { get; set; }
public QualityModel Quality { get; set; }
public MediaInfoModel MediaInfo { get; set; }
public Language Language { get; set; }
public int AlbumId { get; set; }
// These are queried from the database
public LazyLoaded<List<Track>> Tracks { get; set; }
public LazyLoaded<Artist> Artist { get; set; }
public LazyLoaded<Album> Album { get; set; }
// these are ignored by the database but retained/populated for compatibility
public int ArtistId { get { return Artist.Value?.Id ?? 0; } }
public override string ToString()
{
return string.Format("[{0}] {1}", Id, RelativePath);
}
}
}