1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-31 20:15:55 +00:00
Lidarr/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", "");
}
}
}
}