mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-31 20:15:55 +00:00
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; }
|
|||
|
}
|
|||
|
}
|