Change API Version from V3 to V1

This commit is contained in:
Qstick
2017-10-30 21:28:29 -04:00
parent db10057f2c
commit aae9f3cfc3
155 changed files with 248 additions and 248 deletions
+16
View File
@@ -0,0 +1,16 @@
using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
using Lidarr.Api.V1.Albums;
using Lidarr.Api.V1.Artist;
using Lidarr.Http.REST;
namespace Lidarr.Api.V1.Parse
{
public class ParseResource : RestResource
{
public string Title { get; set; }
public ParsedTrackInfo ParsedAlbumInfo { get; set; }
public ArtistResource Artist { get; set; }
public List<AlbumResource> Albums { get; set; }
}
}