mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Merge branch 'feature/database' of https://github.com/mattman86/Lidarr into feature/database
This commit is contained in:
commit
684e4f4c80
1 changed files with 19 additions and 0 deletions
19
src/NzbDrone.Core/Music/Compilation.cs
Normal file
19
src/NzbDrone.Core/Music/Compilation.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue