1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Api/REST/RestResource.cs

19 lines
422 B
C#
Raw Normal View History

2013-07-19 05:47:55 +02:00
using Newtonsoft.Json;
2013-04-20 02:05:28 +02:00
namespace NzbDrone.Api.REST
{
2013-04-20 22:16:33 +02:00
public abstract class RestResource
2013-04-20 02:05:28 +02:00
{
2013-05-25 05:40:35 +02:00
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
2013-04-20 02:05:28 +02:00
public int Id { get; set; }
2013-04-23 04:07:21 +02:00
[JsonIgnore]
2013-04-20 02:05:28 +02:00
public virtual string ResourceName
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
2013-04-20 02:05:28 +02:00
}
}
}
}