1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00
Radarr/NzbDrone.Api/REST/RestResource.cs
2013-04-20 13:16:42 -07:00

17 lines
303 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();
}
}
}
}