mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
15 lines
No EOL
223 B
C#
15 lines
No EOL
223 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
{
|
|
public interface IConfigController
|
|
{
|
|
String SeriesRoot
|
|
{
|
|
get;
|
|
|
|
set;
|
|
}
|
|
}
|
|
} |