SmartMatchInfo.cs 441 B

12345678910111213141516171819
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Model.FileOrganization
  5. {
  6. public class SmartMatchInfo
  7. {
  8. public Guid Id { get; set; }
  9. public string Name { get; set; }
  10. public FileOrganizerType OrganizerType { get; set; }
  11. public List<string> MatchStrings { get; set; }
  12. public SmartMatchInfo()
  13. {
  14. MatchStrings = new List<string>();
  15. }
  16. }
  17. }