Files
jellyfin-jellyfin-1/MediaBrowser.Model/Configuration/MetadataConfiguration.cs

14 lines
280 B
C#
Raw Normal View History

2014-10-09 18:22:04 -04:00

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