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/Parser/Model/ParsedAlbumInfo.cs

39 lines
1.1 KiB

using NzbDrone.Common.Extensions;
using NzbDrone.Core.Qualities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Parser.Model
{
public class ParsedAlbumInfo
{
public string AlbumTitle { get; set; }
public string ArtistName { get; set; }
public ArtistTitleInfo ArtistTitleInfo { get; set; }
public QualityModel Quality { get; set; }
public string ReleaseDate { get; set; }
public bool Discography { get; set; }
public int DiscographyStart { get; set; }
public int DiscographyEnd { get; set; }
public string ReleaseGroup { get; set; }
public string ReleaseHash { get; set; }
public string ReleaseVersion { get; set; }
public override string ToString()
{
string albumString = "[Unknown Album]";
if (AlbumTitle != null )
{
albumString = string.Format("{0}", AlbumTitle);
}
return string.Format("{0} - {1} {2}", ArtistName, albumString, Quality);
}
}
}