AutoOrganizeOptions.cs 724 B

12345678910111213141516171819202122232425
  1. 
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.FileOrganization
  4. {
  5. public class AutoOrganizeOptions
  6. {
  7. /// <summary>
  8. /// Gets or sets the tv options.
  9. /// </summary>
  10. /// <value>The tv options.</value>
  11. public TvFileOrganizationOptions TvOptions { get; set; }
  12. /// <summary>
  13. /// Gets or sets a list of smart match entries.
  14. /// </summary>
  15. /// <value>The smart match entries.</value>
  16. public List<SmartMatchInfo> SmartMatchInfos { get; set; }
  17. public AutoOrganizeOptions()
  18. {
  19. TvOptions = new TvFileOrganizationOptions();
  20. SmartMatchInfos = new List<SmartMatchInfo>();
  21. }
  22. }
  23. }