1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00
Files
Radarr/src/NzbDrone.Api/Series/SeriesResource.cs
T
2018-02-19 08:18:14 +01:00

20 lines
408 B
C#

using System;
using System.Collections.Generic;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.Series
{
[Obsolete("SeriesResource is Obsolete, Remove with new UI")]
public class SeriesResource : RestResource
{
public SeriesResource()
{
Title = "Series Endpoint Obsolete";
}
//View Only
public string Title { get; set; }
}
}