You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Models/Requests/MusicArtistRequestViewModel.cs

19 lines
611 B

namespace Ombi.Core.Models.Requests
{
public class MusicAlbumRequestViewModel
{
public string ForeignAlbumId { get; set; }
public string RequestedByAlias { get; set; }
public string Monitor { get; set; }
public bool SearchForMissingAlbums { get; set; }
}
public class MusicArtistRequestViewModel
{
public string ForeignArtistId { get; set; }
public bool Monitored { get; set; }
public string RequestedByAlias { get; set; }
public string Monitor { get; set; }
public bool SearchForMissingAlbums { get; set; }
}
}