Added a demo mode, this will only show movies and shows that are in the public domain. Dam that stupid fruit company

This commit is contained in:
tidusjar 2019-01-23 22:30:20 +00:00
parent 1565ebce0d
commit 65ea88925a
11 changed files with 360 additions and 13 deletions

View file

@ -0,0 +1,13 @@
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; }
}
}