mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-26 03:18:14 +00:00
15 lines
223 B
C#
15 lines
223 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
{
|
|
public interface IConfigController
|
|
{
|
|
String SeriesRoot
|
|
{
|
|
get;
|
|
|
|
set;
|
|
}
|
|
}
|
|
} |