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

pull/4/head
Joseph Milazzo 7 years ago
commit 684e4f4c80

@ -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; }
}
}
Loading…
Cancel
Save