New: Base API info endpoint

This commit is contained in:
Qstick
2022-11-07 19:26:54 -06:00
parent 90e3c809c3
commit 7ddbe09eca
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Prowlarr.Http
{
public class ApiInfoResource
{
public string Current { get; set; }
public List<string> Deprecated { get; set; }
}
}