Radarr/src/NzbDrone.Api/REST/RestResource.cs

13 lines
347 B
C#
Raw Normal View History

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