MetadataConfiguration.cs 276 B

123456789101112
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. public class MetadataConfiguration
  4. {
  5. public bool UseFileCreationTimeForDateAdded { get; set; }
  6. public MetadataConfiguration()
  7. {
  8. UseFileCreationTimeForDateAdded = true;
  9. }
  10. }
  11. }