Merge branch 'feature/database' of https://github.com/mattman86/Lidarr into feature/database

This commit is contained in:
Joseph Milazzo 2017-04-27 19:10:30 -05:00
commit 684e4f4c80

View file

@ -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<Artist> Artists { get; set; }
}
}