jellyfin/MediaBrowser.Model/Configuration/XbmcMetadataOptions.cs

26 lines
592 B
C#
Raw Normal View History

2020-02-04 00:49:27 +00:00
#pragma warning disable CS1591
2018-12-27 23:27:57 +00:00
namespace MediaBrowser.Model.Configuration
{
public class XbmcMetadataOptions
{
public XbmcMetadataOptions()
{
ReleaseDateFormat = "yyyy-MM-dd";
SaveImagePathsInNfo = true;
EnablePathSubstitution = true;
}
2021-10-26 11:56:30 +00:00
public string? UserId { get; set; }
2018-12-27 23:27:57 +00:00
public string ReleaseDateFormat { get; set; }
public bool SaveImagePathsInNfo { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public bool EnablePathSubstitution { get; set; }
public bool EnableExtraThumbsDuplication { get; set; }
}
}