diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-11-27 07:53:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-27 07:53:18 -0700 |
| commit | d4bd72049b4609582fb57f63134bee58327bc0cc (patch) | |
| tree | cf9fd4473ee337f74de01ee9ed02e5b583f5c5b7 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | c9f8b8a7c7b871938e10dbe94c51b2bd885a915c (diff) | |
| parent | b58d6e5b83c05dd61be165b6e8aa16f04b99cb96 (diff) | |
Merge pull request #8137 from negulici-r-barnabas/master
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index e61b896b9..a07ab7121 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; +using MediaBrowser.Model.Drawing; using MediaBrowser.Model.Dto; using MediaBrowser.Model.Updates; @@ -240,5 +241,23 @@ namespace MediaBrowser.Model.Configuration /// Gets or sets a value indicating whether clients should be allowed to upload logs. /// </summary> public bool AllowClientLogUpload { get; set; } = true; + + /// <summary> + /// Gets or sets the dummy chapters duration in seconds. + /// </summary> + /// <value>The dummy chapters duration.</value> + public int DummyChapterDuration { get; set; } = 300; + + /// <summary> + /// Gets or sets the dummy chapter count. + /// </summary> + /// <value>The dummy chapter count.</value> + public int DummyChapterCount { get; set; } = 100; + + /// <summary> + /// Gets or sets the chapter image resolution. + /// </summary> + /// <value>The chapter image resolution.</value> + public ImageResolution ChapterImageResolution { get; set; } = ImageResolution.MatchSource; } } |
