mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-17 10:45:49 +02:00
a1783a53a9
download might still not work.
12 lines
268 B
C#
12 lines
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; }
|
|
}
|
|
} |