Sonarr/NzbDrone.Api/REST/RestResource.cs

19 lines
422 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]
2013-04-20 00:05:28 +00:00
public virtual string ResourceName
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
2013-04-20 00:05:28 +00:00
}
}
}
}