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

17 lines
327 B
C#
Raw Normal View History

2013-04-20 03:05:28 +03:00
using FluentValidation;
namespace NzbDrone.Api.REST
{
2013-04-20 23:16:33 +03:00
public abstract class RestResource
2013-04-20 03:05:28 +03:00
{
public int Id { get; set; }
public virtual string ResourceName
{
get
{
return GetType().Name.ToLower().Replace("resource", "");
2013-04-20 03:05:28 +03:00
}
}
}
}