New: Import Lists Base (#196)

* New: Import Lists Base
This commit is contained in:
Qstick
2018-02-06 18:08:36 -05:00
committed by GitHub
parent c712d932a0
commit c105c9a65e
74 changed files with 3538 additions and 4 deletions
@@ -0,0 +1,21 @@
using System;
using System.Text;
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);
}
}
}