1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-23 08:22:39 +00:00
Radarr/NzbDrone.Core/Controllers/IConfigController.cs
2010-09-23 22:21:45 -07:00

15 lines
No EOL
223 B
C#

using System;
using System.Collections.Generic;
namespace NzbDrone.Core.Controllers
{
public interface IConfigController
{
String SeriesRoot
{
get;
set;
}
}
}