1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-31 20:26:16 +00:00
Sonarr/NzbDrone.Api/REST/RestResource.cs

17 lines
No EOL
327 B
C#

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