mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
13 lines
285 B
C#
13 lines
285 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Config
|
|
{
|
|
public class IndexerConfigResource : RestResource
|
|
{
|
|
public Int32 MinimumAge { get; set; }
|
|
public Int32 Retention { get; set; }
|
|
public Int32 RssSyncInterval { get; set; }
|
|
}
|
|
}
|