mirror of
https://github.com/Radarr/Radarr
synced 2025-12-31 20:55:25 +01:00
10 lines
203 B
C#
10 lines
203 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Radarr.Http
|
|
{
|
|
public class ApiInfoResource
|
|
{
|
|
public string Current { get; set; }
|
|
public List<string> Deprecated { get; set; }
|
|
}
|
|
}
|