// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable CS1591 namespace MediaBrowser.Model.Configuration { public class MetadataConfiguration { public MetadataConfiguration() { UseFileCreationTimeForDateAdded = true; } public bool UseFileCreationTimeForDateAdded { get; set; } } }