mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
14 lines
366 B
C#
14 lines
366 B
C#
using Newtonsoft.Json;
|
|
using Radarr.Http.REST;
|
|
|
|
namespace Radarr.Api.V4.Indexers
|
|
{
|
|
public class IndexerFlagResource : RestResource
|
|
{
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Include)]
|
|
public new int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string NameLower => Name.ToLowerInvariant();
|
|
}
|
|
}
|