mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
!wip started on the music request engine
This commit is contained in:
parent
cb2e29edaf
commit
83537e2a36
3 changed files with 523 additions and 0 deletions
15
src/Ombi.Core/Models/Requests/MusicArtistRequestViewModel.cs
Normal file
15
src/Ombi.Core/Models/Requests/MusicArtistRequestViewModel.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
namespace Ombi.Core.Models.Requests
|
||||
{
|
||||
public class MusicArtistRequestViewModel
|
||||
{
|
||||
public string ForeignArtistId { get; set; }
|
||||
public ArtistRequestOption RequestOption { get; set; }
|
||||
}
|
||||
|
||||
public enum ArtistRequestOption
|
||||
{
|
||||
AllAlbums = 0,
|
||||
LatestAlbum = 1,
|
||||
FirstAlbum = 2
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue