19 lines
459 B
C#
19 lines
459 B
C#
// <copyright file="MetadataConfiguration.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class MetadataConfiguration
|
|
{
|
|
public MetadataConfiguration()
|
|
{
|
|
UseFileCreationTimeForDateAdded = true;
|
|
}
|
|
|
|
public bool UseFileCreationTimeForDateAdded { get; set; }
|
|
}
|
|
}
|