jellyfin/MediaBrowser.Model/Configuration/MetadataConfiguration.cs

14 lines
280 B
C#
Raw Normal View History

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

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