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

21 lines
587 B

using System;
namespace NzbDrone.Core.Parser.Model
{
public class ImportListItemInfo
{
public int ImportListId { get; set; }
public string ImportList { get; set; }
public string Artist { get; set; }
public string ArtistMusicBrainzId { get; set; }
public string Album { get; set; }
public string AlbumMusicBrainzId { get; set; }
public DateTime ReleaseDate { get; set; }
public override string ToString()
{
return string.Format("[{0}] {1} [{2}]", ReleaseDate, Artist, Album);
}
}
}