2019-01-13 21:02:23 +01:00
|
|
|
|
2018-12-27 18:27:57 -05:00
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class MetadataConfiguration
|
|
|
|
|
{
|
|
|
|
|
public bool UseFileCreationTimeForDateAdded { get; set; }
|
|
|
|
|
|
|
|
|
|
public MetadataConfiguration()
|
|
|
|
|
{
|
|
|
|
|
UseFileCreationTimeForDateAdded = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|