!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,16 @@
namespace Ombi.Store.Entities.Requests
{
public class ArtistRequest : BaseRequest
{
public string ArtistName { get; set; }
public string ForignArtistId { get; set; }
public string Overview { get; set; }
public string Disambiguation { get; set; }
public string Banner { get; set; }
public string Poster { get; set; }
public string Logo { get; set; }
public bool Monitored { get; set; }
public string ArtistType { get; set; }
public string CleanName { get; set; }
}
}