07cc4be6a7
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
25 lines
590 B
C#
25 lines
590 B
C#
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class XbmcMetadataOptions
|
|
{
|
|
public string UserId { get; set; }
|
|
|
|
public string ReleaseDateFormat { get; set; }
|
|
|
|
public bool SaveImagePathsInNfo { get; set; }
|
|
public bool EnablePathSubstitution { get; set; }
|
|
|
|
public bool EnableExtraThumbsDuplication { get; set; }
|
|
|
|
public XbmcMetadataOptions()
|
|
{
|
|
ReleaseDateFormat = "yyyy-MM-dd";
|
|
|
|
SaveImagePathsInNfo = true;
|
|
EnablePathSubstitution = true;
|
|
}
|
|
}
|
|
}
|