Sonarr/NzbDrone.Core/Controllers/IConfigController.cs

15 lines
223 B
C#
Raw Normal View History

2010-09-24 05:21:45 +00:00
using System;
using System.Collections.Generic;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core.Controllers
{
public interface IConfigController
{
2010-09-24 05:21:45 +00:00
String SeriesRoot
{
get;
set;
}
2010-09-23 03:19:47 +00:00
}
}