mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-25 22:28:35 -05:00
11 lines
234 B
C#
11 lines
234 B
C#
namespace Common.Configuration.Arr;
|
|
|
|
public sealed class RadarrConfig : ArrConfig, IConfig
|
|
{
|
|
public const string SectionName = "Radarr";
|
|
|
|
public void Validate()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |