jellyfin/MediaBrowser.Model/Configuration/MetadataConfiguration.cs

14 lines
280 B
C#
Raw Normal View History

2014-10-09 15:22:04 -07:00

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