2014-06-30 03:04:50 +00:00
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
2014-07-04 02:22:57 +00:00
|
|
|
|
public bool EnableExtraThumbsDuplication { get; set; }
|
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
public XbmcMetadataOptions()
|
|
|
|
|
{
|
|
|
|
|
ReleaseDateFormat = "yyyy-MM-dd";
|
|
|
|
|
|
|
|
|
|
SaveImagePathsInNfo = true;
|
|
|
|
|
EnablePathSubstitution = true;
|
2014-07-04 02:22:57 +00:00
|
|
|
|
EnableExtraThumbsDuplication = true;
|
2014-06-30 03:04:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|