!wip started on the music request engine

This commit is contained in:
TidusJar 2018-08-23 16:19:30 +01:00
commit 83537e2a36
3 changed files with 523 additions and 0 deletions

View 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
}
}