2
0

MetadataConfiguration.cs 280 B

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