add setting for photo libraries

This commit is contained in:
Luke Pulverenti
2016-08-15 00:36:17 -04:00
parent 51411fff82
commit caab8299d1
3 changed files with 9 additions and 2 deletions

View File

@@ -3,5 +3,11 @@
public class LibraryOptions
{
public bool EnableArchiveMediaFiles { get; set; }
public bool EnablePhotos { get; set; }
public LibraryOptions()
{
EnablePhotos = true;
}
}
}