Radarr/src/Radarr.Http/ApiInfoResource.cs
Bogdan 2e252771de Remove unused imports
(cherry picked from commit c6b543e0729bc20f15e37d074fbf31d8c76c187a)
2023-05-19 04:14:48 +03:00

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; }
}
}