mirror of
https://github.com/Readarr/Readarr
synced 2026-02-08 15:51:36 +01: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…
Reference in a new issue