mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
13 lines
No EOL
291 B
C#
13 lines
No EOL
291 B
C#
namespace Ombi.Helpers
|
|
{
|
|
public class DemoSingleton
|
|
{
|
|
private static DemoSingleton instance;
|
|
|
|
private DemoSingleton() { }
|
|
|
|
public static DemoSingleton Instance => instance ?? (instance = new DemoSingleton());
|
|
|
|
public bool Demo { get; set; }
|
|
}
|
|
} |