jellyfin/MediaBrowser.Model/Configuration/MetadataConfiguration.cs

14 lines
280 B
C#
Raw Normal View History

2014-10-10 00:22:04 +02:00

namespace MediaBrowser.Model.Configuration
{
public class MetadataConfiguration
{
public bool UseFileCreationTimeForDateAdded { get; set; }
2014-10-24 06:54:35 +02:00
public MetadataConfiguration()
{
UseFileCreationTimeForDateAdded = true;
}
2014-10-10 00:22:04 +02:00
}
}