diff --git a/src/NzbDrone.Core/Music/Compilation.cs b/src/NzbDrone.Core/Music/Compilation.cs new file mode 100644 index 000000000..923e6d7f3 --- /dev/null +++ b/src/NzbDrone.Core/Music/Compilation.cs @@ -0,0 +1,19 @@ +using NzbDrone.Core.Datastore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace NzbDrone.Core.Music +{ + public class Compilation : ModelBase + { + public Compilation() + { + + } + + public int CompilationId { get; set; } + public LazyList Artists { get; set; } + } +}