mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -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
16
src/Ombi.Store/Entities/Requests/ArtistRequest.cs
Normal file
16
src/Ombi.Store/Entities/Requests/ArtistRequest.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue