mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
17 lines
327 B
C#
17 lines
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", "");
|
|
}
|
|
}
|
|
}
|
|
} |