1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Api/REST/RestResource.cs

19 lines
371 B
C#
Raw Normal View History

2013-04-20 02:05:28 +02:00
using FluentValidation;
2013-04-23 04:07:21 +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
{
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
}
}
}
}