mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 08:22:39 +00: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;
|
|
}
|
|
}
|
|
} |