mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 20:42:19 -07:00
27 lines
776 B
C#
27 lines
776 B
C#
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,
|
|
};
|
|
}
|
|
}
|
|
}
|