mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
17 lines
447 B
C#
17 lines
447 B
C#
using System.Collections.Generic;
|
|
using Lidarr.Http.REST;
|
|
using NzbDrone.Api.Music;
|
|
using NzbDrone.Api.Albums;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Api.Parse
|
|
{
|
|
public class ParseResource : RestResource
|
|
{
|
|
public string Title { get; set; }
|
|
public ParsedAlbumInfo ParsedAlbumInfo { get; set; }
|
|
public ArtistResource Artist { get; set; }
|
|
public List<AlbumResource> Albums { get; set; }
|
|
}
|
|
}
|