XbmcMetadataOptions.cs 498 B

123456789101112131415161718192021
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class XbmcMetadataOptions
  5. {
  6. public string UserId { get; set; }
  7. public string ReleaseDateFormat { get; set; }
  8. public bool SaveImagePathsInNfo { get; set; }
  9. public bool EnablePathSubstitution { get; set; }
  10. public XbmcMetadataOptions()
  11. {
  12. ReleaseDateFormat = "yyyy-MM-dd";
  13. SaveImagePathsInNfo = true;
  14. EnablePathSubstitution = true;
  15. }
  16. }
  17. }