mirror of
https://github.com/Readarr/Readarr
synced 2026-04-29 00:01:17 +02:00
12 lines
No EOL
268 B
C#
12 lines
No EOL
268 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Indexers
|
|
{
|
|
public class IndexerResource : RestResource
|
|
{
|
|
public Boolean Enable { get; set; }
|
|
public String Name { get; set; }
|
|
public String Settings { get; set; }
|
|
}
|
|
} |