mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-01 14:14:00 +01:00
13 lines
285 B
C#
13 lines
285 B
C#
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class LibraryOptions
|
|
{
|
|
public bool EnableArchiveMediaFiles { get; set; }
|
|
public bool EnablePhotos { get; set; }
|
|
|
|
public LibraryOptions()
|
|
{
|
|
EnablePhotos = true;
|
|
}
|
|
}
|
|
}
|