mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
13 lines
279 B
C#
13 lines
279 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class IndexerConfigResource : RestResource
|
|
{
|
|
public int MinimumAge { get; set; }
|
|
public int Retention { get; set; }
|
|
public int RssSyncInterval { get; set; }
|
|
}
|
|
}
|