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
2013-04-24 10:31:10 -07:00

19 lines
371 B
C#

using FluentValidation;
using Newtonsoft.Json;
namespace NzbDrone.Api.REST
{
public abstract class RestResource
{
public int Id { get; set; }
[JsonIgnore]
public virtual string ResourceName
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
}
}
}
}