SmartMatchInfo.cs 401 B

12345678910111213141516
  1. 
  2. namespace MediaBrowser.Model.FileOrganization
  3. {
  4. public class SmartMatchInfo
  5. {
  6. public string ItemName { get; set; }
  7. public string DisplayName { get; set; }
  8. public FileOrganizerType OrganizerType { get; set; }
  9. public string[] MatchStrings { get; set; }
  10. public SmartMatchInfo()
  11. {
  12. MatchStrings = new string[] { };
  13. }
  14. }
  15. }