mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-28 23:06:43 -04: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;
|
|
}
|
|
}
|
|
} |