mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-23 22:25:56 -04:00
d051dac12c
Closes #6744
9 lines
192 B
C#
9 lines
192 B
C#
namespace NzbDrone.Common.Options;
|
|
|
|
public class AppOptions
|
|
{
|
|
public string InstanceName { get; set; }
|
|
public string Theme { get; set; }
|
|
public bool? LaunchBrowser { get; set; }
|
|
}
|