1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-03 00:47:10 +02:00
Files
Sonarr/NzbDrone.Api/REST/RestResource.cs

19 lines
422 B
C#
Raw Normal View History

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