You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using Lidarr.Http.REST;
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
|
|
|
|
namespace Lidarr.Api.V1.Config
|
|
|
|
{
|
|
|
|
public class IndexerConfigResource : RestResource
|
|
|
|
{
|
|
|
|
public int MinimumAge { get; set; }
|
|
|
|
public int MaximumSize { get; set; }
|
|
|
|
public int Retention { get; set; }
|
|
|
|
public int RssSyncInterval { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class IndexerConfigResourceMapper
|
|
|
|
{
|
|
|
|
public static IndexerConfigResource ToResource(IConfigService model)
|
|
|
|
{
|
|
|
|
return new IndexerConfigResource
|
|
|
|
{
|
|
|
|
MinimumAge = model.MinimumAge,
|
|
|
|
MaximumSize = model.MaximumSize,
|
|
|
|
Retention = model.Retention,
|
|
|
|
RssSyncInterval = model.RssSyncInterval,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|