mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
17 lines
No EOL
303 B
C#
17 lines
No EOL
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();
|
|
}
|
|
}
|
|
}
|
|
} |