mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
17 lines
395 B
C#
17 lines
395 B
C#
|
|
using MediaBrowser.Common.Configuration;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Configuration
|
|||
|
|
{
|
|||
|
|
public class ServerConfiguration : BaseConfiguration
|
|||
|
|
{
|
|||
|
|
public string ImagesByNamePath { get; set; }
|
|||
|
|
public int RecentItemDays { get; set; }
|
|||
|
|
|
|||
|
|
public ServerConfiguration()
|
|||
|
|
: base()
|
|||
|
|
{
|
|||
|
|
RecentItemDays = 14;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|