mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
22 lines
498 B
C#
22 lines
498 B
C#
|
|
|||
|
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 XbmcMetadataOptions()
|
|||
|
{
|
|||
|
ReleaseDateFormat = "yyyy-MM-dd";
|
|||
|
|
|||
|
SaveImagePathsInNfo = true;
|
|||
|
EnablePathSubstitution = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|